Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrInvalidToken = errors.New("token is invalid") ErrExpiredToken = errors.New("token has expired") )
Different types 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 username and duration CreateToken(username string, wallet 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 ¶
NewJWTMaker creates a new JWTMaker
type Payload ¶
type Payload struct { ID uuid.UUID `json:"id"` UserName string `json:"username"` Wallet string `json:"wallet"` IssuedAt int64 `json:"iat"` ExpiredAt int64 `json:"exp"` }
Payload contains the payload data of the token
func NewPayload ¶
NewPayload creates a new token payload with a specific username and duration
Click to show internal directories.
Click to hide internal directories.