SigningMethodRSA implements the RSA family of signing methods. Expects *rsa.PrivateKey for signing and *rsa.PublicKey for validation
| 9 | // SigningMethodRSA implements the RSA family of signing methods. |
| 10 | // Expects *rsa.PrivateKey for signing and *rsa.PublicKey for validation |
| 11 | type SigningMethodRSA struct { |
| 12 | Name string |
| 13 | Hash crypto.Hash |
| 14 | } |
| 15 | |
| 16 | // Specific instances for RS256 and company |
| 17 | var ( |
nothing calls this directly
no outgoing calls
no test coverage detected