#otp #yubico #verification #request #verify #send-request #id

yubi_opt

An easy to use Yubico OTPs implementation

2 unstable releases

0.2.0 Jan 27, 2023
0.1.0 Jan 26, 2023

#5 in #yubico

33 downloads per month

MIT/Apache

16KB
257 lines

Rust YubicoOTP

This crate allows you to verify Yubico OTPs. To get details about what a Yubico OTP is you can read about it here: https://developers.yubico.com/OTP/

In order to use this crate you should first check the OTP of the user with the is_valid_otp function. If the OTP has the correct format you can send the OTP to Yubico for verification. To do that you will have to create a YubicoClient with your credentials. You can then call the verify function on it to send the request. Check if the result has the state Ok, if its any other state the OTP is invalid!

In case the state was Ok you will probably also want to check the public id of the key to compare it against the one you have on record. To get the public id of any OTP you can call the get_public_id function.


lib.rs:

YubiOTP

This crate allows you to verify Yubico OTPs. To get details about what a Yubico OTP is, you can read about it here: https://developers.yubico.com/OTP/

In order to use this crate you should first check the OTP of the user with the is_valid_otp function. If the OTP has the correct format, you can send the OTP to Yubico for verification. To do that, you will have to create a YubicoClient with your credentials. You can then call the verify function on it to send the request. Check if the result has the state Ok, if it's any other state the OTP is invalid!

In case the state was Ok you will probably also want to check the public id of the key to compare it against the one you have on record. To get the public id of any OTP you can call the get_public_id function.

Dependencies

~5MB
~131K SLoC