| 144 | } |
| 145 | |
| 146 | ECP::Point ECP::BERDecodePoint(BufferedTransformation &bt) const |
| 147 | { |
| 148 | SecByteBlock str; |
| 149 | BERDecodeOctetString(bt, str); |
| 150 | Point P; |
| 151 | if (!DecodePoint(P, str, str.size())) |
| 152 | BERDecodeError(); |
| 153 | return P; |
| 154 | } |
| 155 | |
| 156 | void ECP::DEREncodePoint(BufferedTransformation &bt, const Point &P, bool compressed) const |
| 157 | { |
no test coverage detected