TokenGen is intended to assure data integrity and authenticity shared between parties. This package is inspired by django-contrib-auth-token so that each token generated will have its timeout. Used techniques are symmetric and hashing so that you must have a secret key shared among partners to succeed on using this module.
- Digital signatures
- OTP (one time password)
- Forget password token with timeout
Use go get
go get -u github.com/hyuti/tokengen
Then import the package into your own code
import "github.com/hyuti/tokengen"
See examples for further details
Hyuti Le