Ecdsa-Sig-Value structure in Section 2.2.3 of RFC 3279.
| 33 | |
| 34 | // Ecdsa-Sig-Value structure in Section 2.2.3 of RFC 3279. |
| 35 | type ecdsaSigValue struct { |
| 36 | R, S *big.Int |
| 37 | } |
| 38 | |
| 39 | func (e *ecdsaSigningAlgorithm) Sign(m []byte) ([]byte, error) { |
| 40 | hash := e.hash.New() |
nothing calls this directly
no outgoing calls
no test coverage detected