From 282a7518ecff425d2e7bee226b29251035c597c0 Mon Sep 17 00:00:00 2001 From: Nick Zana Date: Tue, 16 May 2023 18:58:24 -0400 Subject: [PATCH] ctap2-proto: Ctap2_2Authenticator::get_assertion requires self param --- crates/ctap2-proto/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ctap2-proto/src/lib.rs b/crates/ctap2-proto/src/lib.rs index 349d78d..c1a6a81 100644 --- a/crates/ctap2-proto/src/lib.rs +++ b/crates/ctap2-proto/src/lib.rs @@ -27,7 +27,7 @@ pub trait Ctap2_2Authenticator { /// > authentication as well as user consent to a given transaction, using a /// > previously generated credential that is bound to the authenticator and /// > relying party identifier. - fn get_assertion(request: get::Request) -> Result; + fn get_assertion(&mut self, request: get::Request) -> Result; /// > Using this method, platforms can request that the authenticator report /// > a list of its supported protocol versions and extensions, its AAGUID,