Returns signature or error
()
| 15 | Verify(signingString string, sig []byte, key any) error // Returns nil if signature is valid |
| 16 | Sign(signingString string, key any) ([]byte, error) // Returns signature or error |
| 17 | Alg() string // returns the alg identifier for this method (example: 'HS256') |
| 18 | } |
| 19 | |
| 20 | // RegisterSigningMethod registers the "alg" name and a factory function for signing method. |
no outgoing calls