Documentation ¶
Overview ¶
Package otp implements both HOTP and TOTP based one time passcodes in a Google Authenticator compatible manner.
When adding a TOTP for a user, you must store the "secret" value persistently. It is recommend to store the secret in an encrypted field in your datastore. Due to how TOTP works, it is not possible to store a hash for the secret value like you would a password.
To enroll a user, you must first generate an OTP for them. Google Authenticator supports using a QR code as an enrollment method:
import ( "github.com/andeya/faygo/ext/otp/totp" "bytes" "image/png" ) key, err := totp.Generate(totp.GenerateOpts{ Issuer: "Example.com", AccountName: "alice@example.com" }) // Convert TOTP key into a QR code encoded as a PNG image. var buf bytes.Buffer img, err := key.Image(200, 200) png.Encode(&buf, img) // display the QR code to the user. display(buf.Bytes()) // Now Validate that the user's successfully added the passcode. passcode := promptForPasscode() valid := totp.Validate(passcode, key.Secret()) if valid { // User successfully used their TOTP, save it to your backend! storeSecret("alice@example.com", key.Secret()) }
Validating a TOTP passcode is very easy, just prompt the user for a passcode and retrieve the associated user's previously stored secret.
import "github.com/andeya/faygo/ext/otp/totp" passcode := promptForPasscode() secret := getSecret("alice@example.com") valid := totp.Validate(passcode, secret) if valid { // Success! continue login process. }
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ErrGenerateMissingAccountName = errors.New("AccountName must be set")
When generating a Key, the Account Name must be set.
var ErrGenerateMissingIssuer = errors.New("Issuer must be set")
When generating a Key, the Issuer must be set.
var ErrValidateInputInvalidLength6 = errors.New("Input was not 6 characters")
The user provided passcode was not 6 characters as expected.
var ErrValidateInputInvalidLength8 = errors.New("Input was not 8 characters")
The user provided passcode was not 8 characters as expected.
var ErrValidateSecretInvalidBase32 = errors.New("Decoding of secret as base32 failed.")
Error when attempting to convert the secret from base32 to raw bytes.
Functions ¶
This section is empty.
Types ¶
type Algorithm ¶
type Algorithm int
Algorithm represents the hashing function to use in the HMAC operation needed for OTPs.
type Digits ¶
type Digits int
Digits represents the number of digits present in the user's OTP passcode. Six and Eight are the most common values.
type Key ¶
type Key struct {
// contains filtered or unexported fields
}
Key represents an TOTP or HTOP key.
func NewKeyFromURL ¶
NewKeyFromURL creates a new Key from an TOTP or HOTP url.
The URL format is documented here:
https://code.google.com/p/google-authenticator/wiki/KeyUriFormat
func (*Key) AccountName ¶
AccountName returns the name of the user's account.
func (*Key) Image ¶
Image returns an QR-Code image of the specified width and height, suitable for use by many clients like Google-Authenricator to enroll a user's TOTP/HOTP key.