| 55 | } |
| 56 | |
| 57 | void ECP::DEREncode(BufferedTransformation &bt) const |
| 58 | { |
| 59 | GetField().DEREncode(bt); |
| 60 | DERSequenceEncoder seq(bt); |
| 61 | GetField().DEREncodeElement(seq, m_a); |
| 62 | GetField().DEREncodeElement(seq, m_b); |
| 63 | seq.MessageEnd(); |
| 64 | } |
| 65 | |
| 66 | bool ECP::DecodePoint(ECP::Point &P, const byte *encodedPoint, size_t encodedPointLen) const |
| 67 | { |
nothing calls this directly
no test coverage detected