| 133 | } |
| 134 | |
| 135 | void EC2N::DEREncodePoint(BufferedTransformation &bt, const Point &P, bool compressed) const |
| 136 | { |
| 137 | SecByteBlock str(EncodedPointSize(compressed)); |
| 138 | EncodePoint(str, P, compressed); |
| 139 | DEREncodeOctetString(bt, str); |
| 140 | } |
| 141 | |
| 142 | bool EC2N::ValidateParameters(RandomNumberGenerator &rng, unsigned int level) const |
| 143 | { |
nothing calls this directly
no test coverage detected