diff --git a/nitrokey3/windows/piv/access_control.rst b/nitrokey3/windows/piv/access_control.rst index 5e4e169bf0..8ce01410ca 100644 --- a/nitrokey3/windows/piv/access_control.rst +++ b/nitrokey3/windows/piv/access_control.rst @@ -37,7 +37,7 @@ The factory default for the *PIN* is ``123456``. Please refer to the chapter `Retry Counter `__ to learn more. 1. Connect the Nitrokey 3 with your computer. -2. On the terminal enter ``nitropy nk3 piv change-pin``. +2. On the terminal enter ``nitropy nk3 piv --experimental change-pin``. Personal Unblocking Key (PUK) @@ -55,7 +55,7 @@ The factory default for the *PUK* is ``123456``. Please refer to the chapter `Retry Counter `__ to learn more. 1. Connect the Nitrokey 3 with your computer. -2. On the terminal enter ``nitropy nk3 piv change-puk``. +2. On the terminal enter ``nitropy nk3 piv --experimental change-puk``. Retry Counter @@ -68,7 +68,7 @@ A retry counter of zero means that there are no attempts left. The *PIN* has a retry counter of 3 attempts. If these attempts are used up, the *PIN* must be unlocked with the *PUK*. -To unblock the *PIN*, use the command ``nitropy nk3 piv reset-retry-counter``. +To unblock the *PIN*, use the command ``nitropy nk3 piv --experimental reset-retry-counter``. This command requires the *PUK*. The *PUK* has a retry counter of 3 attempts. @@ -82,6 +82,6 @@ Management Key (MGM) The management key is used for management operations. Before you can perform management operations you must authenticate with the management key. -The authentication is done with ``nitropy nk3 piv admin-auth``. +The authentication is done with ``nitropy nk3 piv --experimental admin-auth``. -The management key can be changed with ``nitropy nk3 piv change-admin-key``. +The management key can be changed with ``nitropy nk3 piv --experimental change-admin-key``. diff --git a/nitrokey3/windows/piv/certificate_management.rst b/nitrokey3/windows/piv/certificate_management.rst index a267521865..e9aa35c10b 100644 --- a/nitrokey3/windows/piv/certificate_management.rst +++ b/nitrokey3/windows/piv/certificate_management.rst @@ -14,7 +14,7 @@ The certificate can be retrieved as follows. .. code-block:: - nitropy nk3 piv read-certificate --key-slot `` + nitropy nk3 piv --experimental read-certificate --key-slot `` Write Certificate @@ -24,4 +24,4 @@ Certificates can be written to the Nitrokey per key slot. .. code-block:: - nitropy nk3 piv write-certificate --key-slot + nitropy nk3 piv --experimental write-certificate --key-slot diff --git a/nitrokey3/windows/piv/factory_reset.rst b/nitrokey3/windows/piv/factory_reset.rst index 27739ada7a..5c2d53cd3a 100644 --- a/nitrokey3/windows/piv/factory_reset.rst +++ b/nitrokey3/windows/piv/factory_reset.rst @@ -11,4 +11,4 @@ The reset to factory defaults can be performed as follows. .. code-block:: - nitropy nk3 piv factory-reset + nitropy nk3 piv --experimental factory-reset diff --git a/nitrokey3/windows/piv/guides/client_logon_with_active_directory.rst b/nitrokey3/windows/piv/guides/client_logon_with_active_directory.rst index d87a471b34..f682fcecd9 100644 --- a/nitrokey3/windows/piv/guides/client_logon_with_active_directory.rst +++ b/nitrokey3/windows/piv/guides/client_logon_with_active_directory.rst @@ -90,13 +90,13 @@ The certificate is then written to the Nitrokey. A creation time of the certificate before the creation time of the user account will lead to a failed logon. .. important:: - If the PIV application on the Nitrokey was not used before, perform a initialization with ``nitropy nk3 piv init`` first. + If the PIV application on the Nitrokey was not used before, perform a initialization with ``nitropy nk3 piv --experimental init`` first. 1. Generate a private key and write the CSR to file with the command below. .. code-block:: - nitropy nk3 piv generate-key --key 9A --algo --subject-name --subject-alt-name-upn --out-file + nitropy nk3 piv --experimental generate-key --key 9A --algo --subject-name --subject-alt-name-upn --out-file The value of ```` is the used algorithm with its key length, e.g. ``rsa2048``. The values of ```` and ```` corresponds typically to the ``commonName`` and ``userPrincipalName`` attribute of the Active Directory user account. @@ -114,7 +114,7 @@ The certificate is then written to the Nitrokey. .. code-block:: - nitropy nk3 piv write-certificate --format PEM --path + nitropy nk3 piv --experimental write-certificate --format PEM --path The value of ```` is the certificate file. diff --git a/nitrokey3/windows/piv/key_management.rst b/nitrokey3/windows/piv/key_management.rst index c86eedca9b..575355ddb7 100644 --- a/nitrokey3/windows/piv/key_management.rst +++ b/nitrokey3/windows/piv/key_management.rst @@ -57,4 +57,4 @@ The command below will create private key in key slot ``9a`` for the user with t .. code-block:: - nitropy nk3 piv generate-key --key-slot 9a --subject-name "John Doe" --subject-alt-name-upn "jd@nitrokey.local" + nitropy nk3 piv --experimental generate-key --key-slot 9a --subject-name "John Doe" --subject-alt-name-upn "jd@nitrokey.local"