| 30 | } |
| 31 | |
| 32 | void EC2N::DEREncode(BufferedTransformation &bt) const |
| 33 | { |
| 34 | m_field->DEREncode(bt); |
| 35 | DERSequenceEncoder seq(bt); |
| 36 | m_field->DEREncodeElement(seq, m_a); |
| 37 | m_field->DEREncodeElement(seq, m_b); |
| 38 | seq.MessageEnd(); |
| 39 | } |
| 40 | |
| 41 | bool EC2N::DecodePoint(EC2N::Point &P, const byte *encodedPoint, size_t encodedPointLen) const |
| 42 | { |
nothing calls this directly
no test coverage detected