Skip to content

gildur/gootp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gootp

Implementation of RFC-2289 One-Time Password

Usage

Download and use from command line:

go get github.com/gildur/gootp

otp-md4 seq seed
otp-md5 seq seed
otp-sha1 seq seed

Or use in your code:

import (
	"github.com/gildur/gootp"
)
...
answer := gootp.OtpMd4(seq, seed, passphrase)
answer := gootp.OtpMd5(seq, seed, passphrase)
answer := gootp.OtpSha1(seq, seed, passphrase)

License

MIT

About

Implementation of RFC-2289 One-Time Password

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages