From ec259d8428fa0536abcd6c2dcdab11b2ef9a3b64 Mon Sep 17 00:00:00 2001 From: Fabian Kaczmarczyck Date: Thu, 7 Jan 2021 18:50:34 +0100 Subject: [PATCH] adds comments to new config command file --- src/ctap/config_command.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ctap/config_command.rs b/src/ctap/config_command.rs index 873a9b1..f270513 100644 --- a/src/ctap/config_command.rs +++ b/src/ctap/config_command.rs @@ -21,6 +21,7 @@ use super::status_code::Ctap2StatusCode; use super::storage::PersistentStore; use alloc::vec; +/// Processes the subcommand setMinPINLength for AuthenticatorConfig. fn process_set_min_pin_length( persistent_store: &mut PersistentStore, pin_protocol_v1: &mut PinProtocolV1, @@ -52,6 +53,7 @@ fn process_set_min_pin_length( Ok(ResponseData::AuthenticatorConfig) } +/// Processes the AuthenticatorConfig command. pub fn process_config( persistent_store: &mut PersistentStore, pin_protocol_v1: &mut PinProtocolV1,