Token interface which all token types should attempt to implement.
| 41 | |
| 42 | // Token interface which all token types should attempt to implement. |
| 43 | type Token interface { |
| 44 | SignedString(sigAlg string, priv interface{}) (string, error) |
| 45 | } |
| 46 | |
| 47 | // Claims represents the claims that a token might have. |
| 48 | type Claims struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…