Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrExpiredToken = errors.New("token has expired") ErrInvalidToken = errors.New("token is invalid") )
Different type of error returned by the VerifyToken function.
Functions ¶
This section is empty.
Types ¶
type JWTMaker ¶
type JWTMaker struct {
// contains filtered or unexported fields
}
JWTMaker is a JSON Web Token maker.
type Maker ¶
type Maker interface { // CreateToken creates a new token for a specific user id, username and duration CreateToken(userID int64, username string, duration time.Duration) (string, *Payload, error) // VerifyToken checks if the token is valid or not VerifyToken(token string) (*Payload, error) }
Maker is an interface for managing tokens.
func NewJWTMaker ¶
func NewPasetoMaker ¶
type PasetoMaker ¶
type PasetoMaker struct {
// contains filtered or unexported fields
}
PasetoMaker is a PASETO token maker.
func (*PasetoMaker) CreateToken ¶
func (maker *PasetoMaker) CreateToken(userID int64, username string, duration time.Duration) (string, *Payload, error)
CreateToken creates a new token for a specific user id, username and duration.
func (*PasetoMaker) VerifyToken ¶
func (maker *PasetoMaker) VerifyToken(token string) (*Payload, error)
VerifyToken checks if the token is valid or not.
type Payload ¶
type Payload struct { ID uuid.UUID `json:"id"` Username string `json:"username"` UserID int64 `json:"user_id"` IssuedAt time.Time `json:"issued_at"` ExpiredAt time.Time `json:"expired_at"` Others map[string]interface{} `json:"-"` }
Payload contains the payload data of token.
Click to show internal directories.
Click to hide internal directories.