| 66 | } |
| 67 | |
| 68 | type ecdsaVerifier struct { |
| 69 | pubKey *ecdsa.PublicKey |
| 70 | hash crypto.Hash |
| 71 | } |
| 72 | |
| 73 | func (e *ecdsaVerifier) Verify(msg, sig []byte) (bool, error) { |
| 74 | var v ecdsaSigValue |
nothing calls this directly
no outgoing calls
no test coverage detected