Rust FIDO U2F library is a simple server side implementation to register and check signatures provided by U2F clients/devices. See U2F Technical Overview
Note: WORK IN PROGRESS
Add this to your Cargo.toml
toml
[dependencies]
u2f = "0.1"
Make sure that you have read Using a U2F library before continuing.
``` extern crate u2f;
use u2f::protocol::*;
fn main() { // Generate a challenge for each U2F device that this user has registered. let u2f = U2f::new("APP_ID".into());
// Send registration request to the browser. let result = u2f.request(); }
```
Licensed under either of