Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions docs/reference/security.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,14 @@ With `comm-type: SST`, both the initial connection setup and subsequent federate

### Enabling SST

To use SST, set the `comm-type` to `SST` and provide the path to your `iotauth` installation:
To use SST, first clone the iotauth repository and initialize its submodules, and optionally, set the environment variable `SST_ROOT` to the path of the cloned repository:

```bash
git clone --recurse-submodules https://github.com/iotauth/iotauth.git
export SST_ROOT="$(pwd)/iotauth"
```

Then set the `comm-type` to `SST` and provide the path to your local `iotauth` repository:

<ShowIfs>
<ShowIf c>
Expand Down Expand Up @@ -254,4 +261,4 @@ If you would like to go back to non-AUTH mode, you would have to remove all cont
Pluggable communication security (TLS and SST) is currently only supported for the **C** and **Python** targets. Support for other target languages is planned for the future.
:::

</ShowOnly>
</ShowOnly>
Loading