From 413b55f09806107e6ddc028829ab82de3c05bc1c Mon Sep 17 00:00:00 2001 From: Nick Zana Date: Sun, 28 May 2023 22:00:52 -0400 Subject: [PATCH] ctap2-proto: Add self params to Ctap Authentictaor methods Self required to access authenticator. --- crates/ctap2-proto/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/ctap2-proto/src/lib.rs b/crates/ctap2-proto/src/lib.rs index a659673..7dec456 100644 --- a/crates/ctap2-proto/src/lib.rs +++ b/crates/ctap2-proto/src/lib.rs @@ -53,12 +53,14 @@ pub trait Ctap2_2Authenticator { fn reset(&mut self) -> Result<(), reset::Error>; fn bio_enrollment( + &mut self, request: bio_enrollment::Request, ) -> Result; // > This command is used by the platform to manage discoverable // > credentials on the authenticator. fn credential_management( + &mut self, request: management::Request, ) -> Result;