libwebauthn 0.5.1

FIDO2 (WebAuthn) and FIDO U2F platform library for Linux written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod model;
mod protocol;

pub mod apdu;

pub use self::model::Ctap1RegisteredKey;
pub use self::model::Ctap1Transport;
pub use self::model::Ctap1Version;
pub use self::model::{Ctap1RegisterRequest, Ctap1RegisterResponse};
pub use self::model::{Ctap1SignRequest, Ctap1SignResponse};
pub use self::model::{Ctap1VersionRequest, Ctap1VersionResponse};

pub use self::protocol::Ctap1;