ctap2-proto: Add self params to Ctap Authentictaor methods

Self required to access authenticator.
main
Nick Zana 2 years ago
parent 0804a06f02
commit 413b55f098

@ -53,12 +53,14 @@ pub trait Ctap2_2Authenticator {
fn reset(&mut self) -> Result<(), reset::Error>; fn reset(&mut self) -> Result<(), reset::Error>;
fn bio_enrollment( fn bio_enrollment(
&mut self,
request: bio_enrollment::Request, request: bio_enrollment::Request,
) -> Result<bio_enrollment::Response, bio_enrollment::Error>; ) -> Result<bio_enrollment::Response, bio_enrollment::Error>;
// > This command is used by the platform to manage discoverable // > This command is used by the platform to manage discoverable
// > credentials on the authenticator. // > credentials on the authenticator.
fn credential_management( fn credential_management(
&mut self,
request: management::Request, request: management::Request,
) -> Result<management::Response, management::Error>; ) -> Result<management::Response, management::Error>;

Loading…
Cancel
Save