Make CheckKeyHandle members public for virtual authenticators

This commit is contained in:
John M. Schanck
2023-08-18 16:04:12 -07:00
committed by John Schanck
parent 0777b0c9d4
commit 9ae06145f1
+3 -3
View File
@@ -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> {