otpgen
CategoryAuthentication and Authorization
SubcategoryAuthentication and Authorization
Stars0
Library to generate TOTP/HOTP codes
About otpgen
otpgen
Library to generate TOTP/HOTP codes
Installation
go get -u github.com/grijul/otpgen
Usage
Here is a sample demonstration
package main
import (
"fmt"
"github.com/grijul/otpgen"
)
func main() {
// Generate TOTP
totp := otpgen.TOTP{
Secret: "testpass",
Digits: 8, //(optional) (default: 6)
Algorithm: "SHA256", //(optional) (default: SHA1)
Period: 45, //(optional) (default: 30)
UnixTime: 11111111, //(optional) (default: Current Unix Time)
}
if otp, err := totp.Generate(); err == nil {
fmt.Println(otp)
} else {
fmt.Println(err.Error())
}
// Generate HOTP
hotp := otpgen.HOTP{
Secret: "testsecret",
Counter: 100, //(default: 0)
Digits: 8, //(optional) (default: 6)
}
if otp, err := hotp.Generate(); err == nil {
fmt.Println(otp)
} else {
fmt.Println(err.Error())
}
}
Licence
Frequently Asked Questions
What is otpgen?
otpgen is a Authentication and Authorization library for the Go programming language. Library to generate TOTP/HOTP codes
How do I install otpgen?
Install otpgen with the Go module system using `go get grijul/otpgen`. Check the repository for the current installation instructions.
What category does otpgen belong to?
otpgen is listed under Authentication and Authorization, specifically Authentication and Authorization.