| 154 | } |
| 155 | |
| 156 | void ECP::DEREncodePoint(BufferedTransformation &bt, const Point &P, bool compressed) const |
| 157 | { |
| 158 | SecByteBlock str(EncodedPointSize(compressed)); |
| 159 | EncodePoint(str, P, compressed); |
| 160 | DEREncodeOctetString(bt, str); |
| 161 | } |
| 162 | |
| 163 | bool ECP::ValidateParameters(RandomNumberGenerator &rng, unsigned int level) const |
| 164 | { |
no test coverage detected