Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Token ¶
type Token interface { // JWT 签名方式 JwtSign(userId int64, userName string, expireDuration time.Duration) (tokenString string, err error) JwtParse(tokenString string) (*claims, error) // URL 签名方式,不支持解密 UrlSign(path string, method string, params url.Values) (tokenString string, err error) // contains filtered or unexported methods }
Click to show internal directories.
Click to hide internal directories.