Symbol: EC_POINT_point2oct
lib/libcrypto/ec/ec.h
177
size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *p,
lib/libcrypto/ec/ec_convert.c
366
if ((len = EC_POINT_point2oct(group, point, form, NULL, 0, ctx)) == 0)
lib/libcrypto/ec/ec_convert.c
370
if (EC_POINT_point2oct(group, point, form, buf, len, ctx) != len)
lib/libcrypto/ec/ec_convert.c
467
LCRYPTO_ALIAS(EC_POINT_point2oct);
lib/libcrypto/hidden/openssl/ec.h
63
LCRYPTO_USED(EC_POINT_point2oct);
lib/libssl/ssl_kex.c
342
if ((ecp_len = EC_POINT_point2oct(group, point,
lib/libssl/ssl_kex.c
347
if ((EC_POINT_point2oct(group, point, POINT_CONVERSION_UNCOMPRESSED,
regress/lib/libcrypto/ec/ec_point_conversion.c
511
ret = EC_POINT_point2oct(group, point, form, buf, sizeof(buf), NULL);
regress/lib/libcrypto/ec/ec_point_conversion.c
522
ret = EC_POINT_point2oct(group, point, form, buf, sizeof(buf), NULL);
regress/lib/libcrypto/ec/ec_point_conversion.c
569
len = EC_POINT_point2oct(group, point, form, buf, sizeof(buf), NULL);
regress/lib/libcrypto/ec/ec_point_conversion.c
71
if ((len = EC_POINT_point2oct(group, point, form, NULL, 0, NULL)) == 0)
regress/lib/libcrypto/ec/ec_point_conversion.c
75
if (EC_POINT_point2oct(group, point, form, buf, len, NULL) != len)
regress/lib/libcrypto/ec/ectest.c
281
len = EC_POINT_point2oct(group, Q, POINT_CONVERSION_COMPRESSED, buf, sizeof buf, ctx);
regress/lib/libcrypto/ec/ectest.c
292
len = EC_POINT_point2oct(group, Q, POINT_CONVERSION_UNCOMPRESSED, buf, sizeof buf, ctx);
regress/lib/libcrypto/ec/ectest.c
303
len = EC_POINT_point2oct(group, Q, POINT_CONVERSION_HYBRID, buf, sizeof buf, ctx);
regress/usr.bin/ssh/misc/sk-dummy/sk-dummy.c
107
response->public_key_len = EC_POINT_point2oct(g, q,
regress/usr.bin/ssh/misc/sk-dummy/sk-dummy.c
118
if (EC_POINT_point2oct(g, q, POINT_CONVERSION_UNCOMPRESSED,
regress/usr.bin/ssh/misc/ssh-verify-attestation/ssh-verify-attestation.c
169
*pubkey_len = EC_POINT_point2oct(g, q,
regress/usr.bin/ssh/misc/ssh-verify-attestation/ssh-verify-attestation.c
179
if (EC_POINT_point2oct(g, q, POINT_CONVERSION_UNCOMPRESSED,
usr.bin/ssh/sk-usbhid.c
515
response->public_key_len = EC_POINT_point2oct(g, q,
usr.bin/ssh/sk-usbhid.c
526
if (EC_POINT_point2oct(g, q, POINT_CONVERSION_UNCOMPRESSED,
usr.bin/ssh/sshbuf-getput-crypto.c
152
if ((len = EC_POINT_point2oct(g, v, POINT_CONVERSION_UNCOMPRESSED,
usr.bin/ssh/sshbuf-getput-crypto.c
156
if (EC_POINT_point2oct(g, v, POINT_CONVERSION_UNCOMPRESSED,