From 16157e64a4bcde818230b6d4dc83be58735e4dd9 Mon Sep 17 00:00:00 2001 From: Fabian Kaczmarczyck Date: Tue, 10 Nov 2020 09:52:58 +0100 Subject: [PATCH] change max PIN retries to 8 --- src/ctap/storage.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ctap/storage.rs b/src/ctap/storage.rs index 8db70a2..127dc23 100644 --- a/src/ctap/storage.rs +++ b/src/ctap/storage.rs @@ -75,7 +75,7 @@ const MIN_PIN_LENGTH_RP_IDS: usize = 9; // so we use the maximum. const NUM_TAGS: usize = 10; -const MAX_PIN_RETRIES: u8 = 6; +const MAX_PIN_RETRIES: u8 = 8; const ATTESTATION_PRIVATE_KEY_LENGTH: usize = 32; const AAGUID_LENGTH: usize = 16; #[cfg(feature = "with_ctap2_1")]