SigningMethodHMAC implements the HMAC-SHA family of SigningMethods.
| 9 | |
| 10 | // SigningMethodHMAC implements the HMAC-SHA family of SigningMethods. |
| 11 | type SigningMethodHMAC struct { |
| 12 | Name string |
| 13 | Hash crypto.Hash |
| 14 | _ struct{} |
| 15 | } |
| 16 | |
| 17 | // Specific instances of HMAC-SHA SigningMethods. |
| 18 | var ( |
nothing calls this directly
no outgoing calls
no test coverage detected