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

docs: Adjust documentation on authentication for unlock call

Document, that no authentication with a user is required when calling
`unlock`.

Relates to #26



Signed-off-by: default avatarDavid Runge <dvzrv@archlinux.org>
parent 65b43d18
No related branches found
No related tags found
No related merge requests found
......@@ -2107,14 +2107,12 @@ impl NetHsm {
/// If the device is in state [`SystemState::Locked`] unlocks the device using
/// `unlock_passphrase` and sets its [state](https://docs.nitrokey.com/nethsm/administration#state) to [`SystemState::Operational`].
///
/// This call requires using credentials of a user in the "admin" [role](https://docs.nitrokey.com/nethsm/administration#roles).
/// For this call no credentials are required and if any are configured, they are ignored.
///
/// # Errors
///
/// Returns an [`Error::Api`] if unlocking the device fails:
/// * the device is not in state [`SystemState::Locked`]
/// * the used credentials are not correct
/// * the used credentials are not that of a user in the "admin" role
///
/// # Examples
///
......@@ -2123,7 +2121,7 @@ impl NetHsm {
/// use nethsm::{ConnectionSecurity, Credentials, Error, NetHsm, Passphrase, SystemState};
///
/// # fn main() -> TestResult {
/// // create a connection with a user in the "admin" role
/// // no initial credentials are required
/// let nethsm = NetHsm::new(
/// "https://example.org/api/v1".try_into()?,
/// ConnectionSecurity::Unsafe,
......
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