| 64 | } |
| 65 | |
| 66 | bool ECP::DecodePoint(ECP::Point &P, const byte *encodedPoint, size_t encodedPointLen) const |
| 67 | { |
| 68 | StringStore store(encodedPoint, encodedPointLen); |
| 69 | return DecodePoint(P, store, encodedPointLen); |
| 70 | } |
| 71 | |
| 72 | bool ECP::DecodePoint(ECP::Point &P, BufferedTransformation &bt, size_t encodedPointLen) const |
| 73 | { |
no test coverage detected