Skip to content
Snippets Groups Projects
Verified Commit 90d6a76d authored by David Runge's avatar David Runge :chipmunk:
Browse files

docs: Adjust information on output format on public key retrieval

Clarify, that we are returning X.509 PEM format.

Fixes #46



Signed-off-by: default avatarDavid Runge <dvzrv@archlinux.org>
parent c2312543
No related branches found
No related tags found
No related merge requests found
......@@ -3413,7 +3413,7 @@ impl NetHsm {
///
/// [Gets the public key of a key](https://docs.nitrokey.com/nethsm/operation#show-key-details)
/// on the device specified by `key_id`.
/// The public key is returned in PKCS#8 format.
/// The public key is returned in [X.509] Privacy-enhanced Mail ([PEM]) format.
///
/// This call requires using credentials of a user in the "admin" or "operator"
/// [role](https://docs.nitrokey.com/nethsm/administration#roles).
......@@ -3451,6 +3451,8 @@ impl NetHsm {
/// # Ok(())
/// # }
/// ```
/// [X.509]: https://en.wikipedia.org/wiki/X.509
/// [PEM]: https://en.wikipedia.org/wiki/Privacy-Enhanced_Mail
pub fn get_public_key(&self, key_id: &str) -> Result<String, Error> {
Ok(
keys_key_id_public_pem_get(&self.create_connection_config(), key_id)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment