summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-05-03Exercise the point conversion bit for octet string representationstb1-1/+279
of points on secp256r1.
2021-05-03Add a test that exercises the point conversion bit of the octettb1-1/+362
string representations of points on the binary curve sect571k1.
2021-05-03Fix corner case for compressed points on binary curvestb1-1/+5
Per X9.62 4.4.1.b., the compressed representation of a point with zero x coordinate on a binary curve must have y_bit unset. Error out in that case of ec_GF2m_set_compressed_coordinates() instead of ignoring y_bit. ok jsing