Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(Setting up your PKI): (Nit)Clarify command usage #604

Merged
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
15 changes: 11 additions & 4 deletions source/reference-manual/security/device-gateway.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,24 @@ Setting up your PKI
-------------------

:ref:`ref-fioctl` includes a sub-command to set this up:
``fioctl keys ca create /absolute/path/to/certs/``. A few important things to
note about this command:

.. code-block::

fioctl keys ca create /absolute/path/to/certs/

A few important things to note about this command:

* It's highly recommend that you use a PKCS#11 compatible HSM. This
will ensure the safety of your factory's root of trust private key.

* The "PKI Directory" is important and should be securely backed
up.

You can view the configured certificates with
``fioctl keys ca show --pretty``.
After running the above command, you can validate the outcome and view the configured certificates by using the following command:

.. code-block::

fioctl keys ca show --pretty

The Factory PKI is interwoven with Device Manufacturing Process and Device Registration,
you can find out more details on this topic in this guide :ref:`ref-factory-registration-ref`.
Expand Down