15 releases

0.5.0-dev Oct 31, 2023
0.4.9 Nov 16, 2022
0.4.7 Sep 25, 2022
0.4.5 Aug 26, 2022
0.4.2-beta.4 Jul 29, 2022

#949 in Authentication

Download history 4664/week @ 2024-01-01 5513/week @ 2024-01-08 4902/week @ 2024-01-15 9435/week @ 2024-01-22 6153/week @ 2024-01-29 8013/week @ 2024-02-05 8652/week @ 2024-02-12 2848/week @ 2024-02-19 9938/week @ 2024-02-26 3873/week @ 2024-03-04 8266/week @ 2024-03-11 7292/week @ 2024-03-18 12437/week @ 2024-03-25 13550/week @ 2024-04-01 4729/week @ 2024-04-08 2868/week @ 2024-04-15

33,640 downloads per month
Used in 2 crates (via webauthn-rs)

MPL-2.0 license

525KB
7.5K SLoC

Webauthn Rust Core

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.

⚠️ WARNING ⚠️

This library implements and exposes the raw elements to create a Webauthn Relying Party. Many of these components have many sharp edges and the ability to confuse users, accidentally allow security bypasses, and more. If possible you SHOULD use Webauthn-RS instead of this crate!

However, if you want to do something truly custom or specific, and you understand the risks, then this library is for you.

Why OpenSSL?

A question I expect is why OpenSSL rather than some other pure-Rust cryptographic providers. There are two major justfications.

The first is that if this library will be used in corporate or major deployments, then cryptographic audits may have to be performed. It is much easier to point toward OpenSSL which has already undergone much more review and auditing than using a series of Rust crates which (while still great!) have not seen the same level of scrutiny.

The second is that OpenSSL is the only library I have found that allows us to reconstruct an EC public key from its X/Y points or an RSA public key from its n/e for use with signature verification. Without this, we are not able to parse authenticator credentials to perform authentication.

Resources

Dependencies

~10MB
~227K SLoC