Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrExpiredToken = errors.New("token has expired") ErrInvalidToken = errors.New("token is invalid") )
Functions ¶
This section is empty.
Types ¶
type JWTMaker ¶
type JWTMaker struct {
// contains filtered or unexported fields
}
JSON Web Token Maker
func (*JWTMaker) CreateToken ¶
type Maker ¶
type Maker interface {
// Creates a new token for a specific username and duration
CreateToken(username string, duration time.Duration) (string, error)
// Checks if the token is valid or not
VerifyToken(token string) (*Payload, error)
// Get Payload data from token
GetPayload(token string) (*Payload, error)
}
func NewPasetoMaker ¶
type PasetoMaker ¶
type PasetoMaker struct {
// contains filtered or unexported fields
}
func (*PasetoMaker) CreateToken ¶
func (*PasetoMaker) GetPayload ¶
func (maker *PasetoMaker) GetPayload(token string) (*Payload, error)
func (*PasetoMaker) VerifyToken ¶
func (maker *PasetoMaker) VerifyToken(token string) (*Payload, error)
Checks if the token is valid or not
Click to show internal directories.
Click to hide internal directories.