Documentation
¶
Overview ¶
Package jwt is token generation and validation.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // HS256 Method HS256 = jwt.SigningMethodHS256 // HS384 Method HS384 = jwt.SigningMethodHS384 // HS512 Method HS512 = jwt.SigningMethodHS512 )
Functions ¶
func GenerateCustomToken ¶
GenerateCustomToken generate token by custom fields
func GenerateToken ¶
GenerateToken generate token by uid and role
Types ¶
type Claims ¶
type Claims struct {
UID string `json:"uid"`
Role string `json:"role"`
jwt.RegisteredClaims
}
Claims my custom claims
type CustomClaims ¶
type CustomClaims struct {
Fields KV `json:"fields"`
jwt.RegisteredClaims
}
CustomClaims custom fields claims
func ParseCustomToken ¶
func ParseCustomToken(tokenString string) (*CustomClaims, error)
ParseCustomToken parse token
func (*CustomClaims) Get ¶
func (c *CustomClaims) Get(key string) (val interface{}, isExist bool)
Get custom field value by key, if not found, return false
type Option ¶
type Option func(*options)
Option set the jwt options.
func WithSigningMethod ¶
func WithSigningMethod(sm *jwt.SigningMethodHMAC) Option
WithSigningMethod set signing method value
Click to show internal directories.
Click to hide internal directories.