20 releases

0.5.0-dev Oct 31, 2023
0.4.9 Nov 16, 2022
0.4.7 Sep 25, 2022
0.3.2 Dec 29, 2021
0.3.0-alpha.1 Nov 28, 2020

#357 in Authentication

Download history 371/week @ 2023-12-13 491/week @ 2023-12-20 100/week @ 2023-12-27 302/week @ 2024-01-03 272/week @ 2024-01-10 223/week @ 2024-01-17 210/week @ 2024-01-24 184/week @ 2024-01-31 152/week @ 2024-02-07 201/week @ 2024-02-14 316/week @ 2024-02-21 2483/week @ 2024-02-28 152/week @ 2024-03-06 397/week @ 2024-03-13 330/week @ 2024-03-20 150/week @ 2024-03-27

1,074 downloads per month
Used in kanidm_tools

MPL-2.0 license

1MB
18K SLoC

webauthn-authenticator-rs

WebAuthn is a modern approach to hardware based authentication, consisting of a user with an authenticator device, a browser or client that interacts with the device, and a server that is able to generate challenges and verify the authenticator's validity.

This library is the client half of the authenticator process, performing the steps that would normally be taken by a web browser. Given a challenge from a Webauthn server, this library can interface with a CTAP2 device and transform the response to a Webauthn registration or assertion (authentication).

Development

Building docs

This library contains extensive documentation in rustdoc format. You can build this with:

cargo doc --no-deps --document-private-items

This library includes many references to module-private items to explain how protocols work, so we use --document-private-items.

By default, this won't add any features, so you'll want to add them with --features ..., or use --all-features (which pulls in many dependencies).

To build all docs in a way that annotates which modules and functions are avaliable with which features:

  1. Install Rust nightly:

    rustup toolchain install nightly
    
  2. Build the documentation with:

    RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --no-deps --document-private-items
    

    Or with PowerShell (Windows):

    $Env:RUSTDOCFLAGS = "--cfg docsrs"
    cargo +nightly doc --no-deps --document-private-items
    

Dependencies

~5–61MB
~897K SLoC