SigningMethodHMAC implements the HMAC-SHA family of signing methods. Expects key type of []byte for both signing and validation
| 9 | // SigningMethodHMAC implements the HMAC-SHA family of signing methods. |
| 10 | // Expects key type of []byte for both signing and validation |
| 11 | type SigningMethodHMAC struct { |
| 12 | Name string |
| 13 | Hash crypto.Hash |
| 14 | } |
| 15 | |
| 16 | // Specific instances for HS256 and company |
| 17 | var ( |
nothing calls this directly
no outgoing calls
no test coverage detected