webauthn-rs-proto

Patched webauthn-rs-proto (https://crates.io/crates/webauthn-rs-proto) that adds support for Ed25519.
git clone https://git.philomathiclife.com/repos/webauthn-rs-proto
Log | Files | Refs | README | LICENSE

lib.rs (354B)


      1 //! JSON Protocol Structs and representations for communication with authenticators
      2 //! and clients.
      3 
      4 #![deny(warnings)]
      5 #![warn(unused_extern_crates)]
      6 #![warn(missing_docs)]
      7 
      8 pub mod attest;
      9 pub mod auth;
     10 pub mod cose;
     11 pub mod extensions;
     12 pub mod options;
     13 
     14 pub use attest::*;
     15 pub use auth::*;
     16 pub use cose::*;
     17 pub use extensions::*;
     18 pub use options::*;