From 9ae06145f128b99d84e749cdfd8d192e15ea7b68 Mon Sep 17 00:00:00 2001 From: "John M. Schanck" Date: Fri, 18 Aug 2023 16:04:12 -0700 Subject: [PATCH] Make CheckKeyHandle members public for virtual authenticators --- src/ctap2/preflight.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ctap2/preflight.rs b/src/ctap2/preflight.rs index 1cfbf89..a7011eb 100644 --- a/src/ctap2/preflight.rs +++ b/src/ctap2/preflight.rs @@ -18,9 +18,9 @@ use sha2::{Digest, Sha256}; /// if this token is already registered or not. #[derive(Debug)] pub struct CheckKeyHandle<'assertion> { - pub(crate) key_handle: &'assertion [u8], - pub(crate) client_data_hash: &'assertion [u8], - pub(crate) rp: &'assertion RelyingPartyWrapper, + pub key_handle: &'assertion [u8], + pub client_data_hash: &'assertion [u8], + pub rp: &'assertion RelyingPartyWrapper, } impl<'assertion> RequestCtap1 for CheckKeyHandle<'assertion> {