YubikeyOTP
is an Elixir client for authenticating Yubikey one-time-passwords. It can verify OTPs using Yubico's public
API or by using your own or third-party OTP validation services.
In addition to acting as a client, YubikeyOTP's OTP parsing feature can be used to build your own validation service.
This early release has not been used in production yet and doesn't have enough tests - please try it and get in touch if something doesn't behave as expected.
The package can be installed by adding yubikey_otp
to your list of
dependencies in mix.exs
:
def deps do
[
{:yubikey_otp, "~> 0.2.4"}
]
end
A Yubikey is a tiny USB device that connects to your computer as if it was USB keyboard. Pressing the button on a Yubikey causes it to type a new unique password that can be checked against a remote server once. Yubikeys can be used for authentication with both command-line and web applications, but are most commonly used alongside traditional passwords to provide Two Factor Authentication on web sites - the key is "something you have".
Most Yubikeys since 2008 can generate OTPs, but modern Yubikeys also support the U2F and WebAuthn standards: these standard are more secure and immune to phishing, and should be prefered for new services. The older OTP format is more widely deployed and still actively used. This library only supports the older OTP format.
YubikeyOTP takes the OTP code generated by the Yubikey, sends it to a Yubkey Validation Service to be verified, and parses the API result. It follows Yubico's recommendation to send queries to five different API endpoints simultaneously.
my_id = Application.get_env(:my_app, :yubikey_client_id)
{:ok, service} = YubikeyOTP.service(api_id: my_id)
YubikeyOTP.verify("ccccccclzlojikekndkhfibggvkgujttihkcuvkjfrvj", service)
# => {:ok, :ok}
YubikeyOTP.verify("ccccccclzlojikekndkhfibggvkgujttihkcuvkjfrvj", service)
# => {:error, :replayed_otp}
-
You'll need a Yubikey! They can be bought from Yubico or other online stores such as Amazon. The cheaper "Security Key" range does not generate OTPs, only WebAuthn, and won't work with this code.
-
You need to sign up for an API key (using your Yubikey)
Full API documentation can be found at https://hexdocs.pm/yubikey_otp.
You can request new features by creating an issue, or submit a pull request with your contribution.
Copyright (c) 2022 Digital Identity Ltd, UK
YubikeyOTP is MIT licensed.
- Wikipedia - Yubikey
- Yubico - Using A Client Library
- Yubico - Getting Started Writing Clients
- Yubico - Validation Protocol V2
- Yubico - Yubicloud Connector Libraries
- Yubico - Self Hosted OTP Validation
YubikeyOTP is not endorsed by Yubico.