-
Notifications
You must be signed in to change notification settings - Fork 50
Description
It's lives here https://github.com/bhyde/cl-one-time-passwords, and this is it's system file: https://github.com/bhyde/cl-one-time-passwords/blob/master/cl-otp.asd
Previwe of README.md:
"One time passwords provide a way to do authentication based on a shared secret without revealing that secret on the communciation channel.
Two well specified ways of generating OTPs are:
- HOTP - An HMAC-Based One-Time Password Algorithm, i.e. RFC 4226
- TOTP - Time-Based One-Time Password Algorithm , i.e. RFC 6238
These are commonly used as one factor in two factor authentication systems. For example Google uses these. For example Google's Authenticator App for most smart phones will generate one time passwords once it has been configured with the shared secret(s) for your account(s).
Cl-one-time-passwords implements HOTP and TOTP in Common Lisp. ..."
-- https://github.com/bhyde/cl-one-time-passwords/blob/master/README.md