/totp

Implementation of the TOTP Algorithm

Primary LanguageGoMIT LicenseMIT

TOTP Algorithm implementation

This simple program is an implementation of the TOTP (Time based One Time Password) algorithm

go get github.com/ramonibz/totp/totp

Basic usage example:

import "github.com/ramonibz/totp/totp"

func main() {
    totp.GetTotpCode(seed)
}