Claims defines the payload for a JWT. Most callers should embed jwt.Claims
| 34 | // Claims defines the payload for a JWT. Most callers |
| 35 | // should embed jwt.Claims |
| 36 | type Claims interface { |
| 37 | Validate(jwt.Expected) error |
| 38 | } |
| 39 | |
| 40 | const ( |
| 41 | SigningAlgo = jose.HS512 |
no outgoing calls
no test coverage detected