package handlers
import (
"github.com/pquerna/otp"
"github.com/pquerna/otp/totp"
"time"
)
type TOTPVerifier interface {
Verify(token, secret string) (bool, error)
}
type TOTPVerifierImpl struct {
Period uint
Skew uint
func (tv *TOTPVerifierImpl) Verify(token, secret string) (bool, error) {
opts := totp.ValidateOpts{
Period: tv.Period,
Skew: tv.Skew,
Digits: otp.DigitsSix,
Algorithm: otp.AlgorithmSHA1,
return totp.ValidateCustom(token, secret, time.Now().UTC(), opts)