ctap2-proto: Uncomment temporarily disabled methods

main
Nick Zana 2 years ago
parent d5a4a03c0d
commit 0804a06f02

@ -48,21 +48,19 @@ pub trait Ctap2_2Authenticator {
request: client_pin::Request, request: client_pin::Request,
) -> Result<client_pin::Response, client_pin::Error>; ) -> Result<client_pin::Response, client_pin::Error>;
#[allow(clippy::missing_errors_doc)]
/// > This method is used by the client to reset an authenticator back to a /// > This method is used by the client to reset an authenticator back to a
/// > factory default state. /// > factory default state.
fn reset(&mut self) -> Result<(), reset::Error>; fn reset(&mut self) -> Result<(), reset::Error>;
// fn bio_enrollment( fn bio_enrollment(
// request: bio_enrollment::Request, request: bio_enrollment::Request,
// ) -> Result<bio_enrollment::Response, bio_enrollment::Error>; ) -> Result<bio_enrollment::Response, bio_enrollment::Error>;
// #[allow(clippy::missing_errors_doc)]
// > 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(
// request: management::Request, request: management::Request,
// ) -> Result<management::Response, management::Error>; ) -> Result<management::Response, management::Error>;
#[allow(clippy::missing_errors_doc)] #[allow(clippy::missing_errors_doc)]
/// > This command allows the platform to let a user select a certain /// > This command allows the platform to let a user select a certain
@ -71,11 +69,10 @@ pub trait Ctap2_2Authenticator {
// fn large_blobs() -> Result<(), ()>; // fn large_blobs() -> Result<(), ()>;
// #[allow(clippy::missing_errors_doc)] #[allow(clippy::missing_errors_doc)]
// > This command is used to configure various authenticator features // > This command is used to configure various authenticator features
// > through the use of its subcommands. // > through the use of its subcommands.
// fn authenticator_config(request: config::Request) -> Result<(), fn authenticator_config(&mut self, request: config::Request) -> Result<(), config::Error>;
// config::Error>;
} }
#[repr(u8)] #[repr(u8)]

Loading…
Cancel
Save