#fido2 #ctap #hmac #protocols #extension #whether

ctap_hmac

A Rust implementation of the FIDO2 CTAP protocol, including the HMAC extension

10 releases

0.4.5 Jul 26, 2021
0.4.4 Oct 18, 2020
0.4.3 Sep 6, 2020
0.4.2 Apr 26, 2020
0.1.1 Oct 9, 2019

#624 in Authentication

Download history 12/week @ 2024-02-19 22/week @ 2024-02-26 7/week @ 2024-03-04 15/week @ 2024-03-11 9/week @ 2024-03-18 5/week @ 2024-03-25 113/week @ 2024-04-01

143 downloads per month
Used in fido2luks

Apache-2.0/MIT

84KB
2K SLoC

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

ctap

ctap is a library implementing the FIDO2 CTAP protocol.

Usage example

use ctap_hmac::*;
let device_info = get_devices()?.next().expect("no device connected");
let mut device = FidoDevice::new(&device_info)?;

// This can be omitted if the FIDO device is not configured with a PIN.
let pin = "test";
device.unlock(pin)?;

// In a real application these values would come from the requesting app.
let cred_request = FidoCredentialRequestBuilder::default()
                    .rp_id("rp_id")
                    .user_name("user_name")
                    .build().unwrap();

let cred = device.make_credential(&cred_request)?;
let cred = &&cred;
let assertion_request = FidoAssertionRequestBuilder::default()
                            .rp_id("rp_id")
                            .credential(&&cred)
                            .build().unwrap();
// In a real application the credential would be stored and used later.
let result = device.get_assertion(&assertion_request);

Limitations

Currently, this library only supports Linux. Testing and contributions for other platforms is welcome.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~13MB
~316K SLoC