You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-security/test/jwt_test.go

23 lines
386 B

package test
import (
"fmt"
"git.tsl3060.com/openapi/go-security/jwt"
"testing"
)
func Test_Jwt(t *testing.T) {
t.Run("test jwt", func(t *testing.T) {
// 设置公钥
service, err := jwt.NewTokenService("public key")
if err != nil {
return
}
// 校验解析token
token, err := service.VerifyToken("token")
if err != nil {
return
}
fmt.Println(token)
})
}