SigningMethodECDSA implements the ECDSA family of signing methods. Expects *ecdsa.PrivateKey for signing and *ecdsa.PublicKey for verification
| 16 | // SigningMethodECDSA implements the ECDSA family of signing methods. |
| 17 | // Expects *ecdsa.PrivateKey for signing and *ecdsa.PublicKey for verification |
| 18 | type SigningMethodECDSA struct { |
| 19 | Name string |
| 20 | Hash crypto.Hash |
| 21 | KeySize int |
| 22 | CurveBits int |
| 23 | } |
| 24 | |
| 25 | // Specific instances for EC256 and company |
| 26 | var ( |
nothing calls this directly
no outgoing calls
no test coverage detected