Symbol: EC_POINT_new
lib/libcrypto/ec/ec.h
156
EC_POINT *EC_POINT_new(const EC_GROUP *group);
lib/libcrypto/ec/ec_ameth.c
325
if ((pub_key = EC_POINT_new(group)) == NULL)
lib/libcrypto/ec/ec_convert.c
394
point = EC_POINT_new(group);
lib/libcrypto/ec/ec_curve.c
1228
if ((generator = EC_POINT_new(group)) == NULL) {
lib/libcrypto/ec/ec_key.c
252
if ((pub_key = EC_POINT_new(eckey->group)) == NULL)
lib/libcrypto/ec/ec_key.c
300
if ((point = EC_POINT_new(eckey->group)) == NULL)
lib/libcrypto/ec/ec_key.c
377
if ((point = EC_POINT_new(key->group)) == NULL)
lib/libcrypto/ec/ec_lib.c
343
group->generator = EC_POINT_new(group);
lib/libcrypto/ec/ec_lib.c
672
if ((point = EC_POINT_new(group)) == NULL)
lib/libcrypto/ec/ec_lib.c
837
LCRYPTO_ALIAS(EC_POINT_new);
lib/libcrypto/ec/ec_lib.c
896
if ((point = EC_POINT_new(group)) == NULL)
lib/libcrypto/ec/ec_mult.c
131
if ((doubled = EC_POINT_new(group)) == NULL)
lib/libcrypto/ec/ec_mult.c
136
if ((multiples[i] = EC_POINT_new(group)) == NULL)
lib/libcrypto/ec/ecp_hp_methods.c
826
if ((multiples[i] = EC_POINT_new(group)) == NULL)
lib/libcrypto/ec/ecp_hp_methods.c
830
if ((multiples[i + 1] = EC_POINT_new(group)) == NULL)
lib/libcrypto/ec/ecp_hp_methods.c
836
if ((rr = EC_POINT_new(group)) == NULL)
lib/libcrypto/ec/ecp_hp_methods.c
838
if ((t = EC_POINT_new(group)) == NULL)
lib/libcrypto/ecdh/ecdh.c
175
if ((point = EC_POINT_new(group)) == NULL) {
lib/libcrypto/ecdsa/ecdsa.c
317
if ((point = EC_POINT_new(group)) == NULL) {
lib/libcrypto/ecdsa/ecdsa.c
740
if ((point = EC_POINT_new(group)) == NULL) {
lib/libcrypto/hidden/openssl/ec.h
55
LCRYPTO_USED(EC_POINT_new);
lib/libcrypto/sm2/sm2_crypt.c
301
if ((kG = EC_POINT_new(group)) == NULL) {
lib/libcrypto/sm2/sm2_crypt.c
305
if ((kP = EC_POINT_new(group)) == NULL) {
lib/libcrypto/sm2/sm2_crypt.c
539
if ((C1 = EC_POINT_new(group)) == NULL) {
lib/libcrypto/sm2/sm2_sign.c
119
if ((kG = EC_POINT_new(group)) == NULL) {
lib/libcrypto/sm2/sm2_sign.c
275
if ((pt = EC_POINT_new(group)) == NULL) {
lib/libfido2/src/es256.c
300
if ((q = EC_POINT_new(g)) == NULL ||
lib/libfido2/src/es256.c
471
(q = EC_POINT_new(g)) == NULL) {
lib/libssl/ssl_kex.c
279
if ((point = EC_POINT_new(group)) == NULL)
lib/libssl/ssl_kex.c
370
if ((point = EC_POINT_new(group)) == NULL)
regress/lib/libcrypto/ec/ec_arithmetic.c
149
if ((result = EC_POINT_new(group)) == NULL)
regress/lib/libcrypto/ec/ec_arithmetic.c
151
if ((a = EC_POINT_new(group)) == NULL)
regress/lib/libcrypto/ec/ec_arithmetic.c
153
if ((b = EC_POINT_new(group)) == NULL)
regress/lib/libcrypto/ec/ec_asn1_test.c
298
if ((simple_generator = EC_POINT_new(simple_group)) == NULL)
regress/lib/libcrypto/ec/ec_asn1_test.c
859
if ((generator = EC_POINT_new(group)) == NULL)
regress/lib/libcrypto/ec/ec_point_conversion.c
146
if ((random_point = EC_POINT_new(group)) == NULL)
regress/lib/libcrypto/ec/ec_point_conversion.c
551
if ((point = EC_POINT_new(group)) == NULL)
regress/lib/libcrypto/ec/ectest.c
205
P = EC_POINT_new(group);
regress/lib/libcrypto/ec/ectest.c
206
Q = EC_POINT_new(group);
regress/lib/libcrypto/ec/ectest.c
207
R = EC_POINT_new(group);
regress/lib/libcrypto/ec/ectest.c
93
EC_POINT *P = EC_POINT_new(group);
regress/lib/libcrypto/ec/ectest.c
94
EC_POINT *Q = EC_POINT_new(group);
regress/lib/libcrypto/ecdh/ecc_cdh.c
2210
if ((peer_pub = EC_POINT_new(group)) == NULL)
regress/lib/libcrypto/ecdh/ecdhtest.c
302
if ((pub = EC_POINT_new(group)) == NULL)
regress/lib/libcrypto/sm2/sm2crypttest.c
114
pt = EC_POINT_new(group);
regress/lib/libcrypto/sm2/sm2crypttest.c
66
generator = EC_POINT_new(group);
regress/lib/libcrypto/sm2/sm2sigtest.c
114
pt = EC_POINT_new(group);
regress/lib/libcrypto/sm2/sm2sigtest.c
67
generator = EC_POINT_new(group);
regress/usr.bin/ssh/misc/ssh-verify-attestation/ssh-verify-attestation.c
146
(q = EC_POINT_new(g)) == NULL) {
regress/usr.bin/ssh/unittests/sshbuf/test_sshbuf_getput_crypto.c
217
ecp = EC_POINT_new(EC_KEY_get0_group(eck));
sbin/iked/dh.c
583
if ((secretp = EC_POINT_new(ecgroup)) == NULL)
sbin/iked/dh.c
696
if ((point = EC_POINT_new(ecgroup)) == NULL)
sbin/isakmpd/dh.c
494
if ((secretp = EC_POINT_new(ecgroup)) == NULL)
sbin/isakmpd/dh.c
607
if ((point = EC_POINT_new(ecgroup)) == NULL)
usr.bin/ssh/kexecdh.c
151
if ((dh_pub = EC_POINT_new(group)) == NULL) {
usr.bin/ssh/sk-usbhid.c
492
(q = EC_POINT_new(g)) == NULL) {
usr.bin/ssh/ssh-sk.c
206
(q = EC_POINT_new(g)) == NULL ||
usr.bin/ssh/sshbuf-getput-crypto.c
91
EC_POINT *pt = EC_POINT_new(EC_KEY_get0_group(v));
usr.bin/ssh/sshkey.c
2672
if ((nq = EC_POINT_new(group)) == NULL) {