| 26 | } |
| 27 | |
| 28 | type ecdsaSigningAlgorithm struct { |
| 29 | privKey *ecdsa.PrivateKey |
| 30 | hash crypto.Hash |
| 31 | rand io.Reader |
| 32 | } |
| 33 | |
| 34 | // Ecdsa-Sig-Value structure in Section 2.2.3 of RFC 3279. |
| 35 | type ecdsaSigValue struct { |
nothing calls this directly
no outgoing calls
no test coverage detected