Searched refs:EC_POINT_new (Results 1 – 25 of 47) sorted by relevance
12
| /freebsd-14-stable/crypto/openssl/test/ |
| HD | ectest.c | 52 || !TEST_ptr(P = EC_POINT_new(group)) in group_order_tests() 53 || !TEST_ptr(Q = EC_POINT_new(group)) in group_order_tests() 54 || !TEST_ptr(R = EC_POINT_new(group)) in group_order_tests() 55 || !TEST_ptr(S = EC_POINT_new(group))) in group_order_tests() 192 if (!TEST_ptr(P = EC_POINT_new(group)) in prime_field_tests() 193 || !TEST_ptr(Q = EC_POINT_new(group)) in prime_field_tests() 194 || !TEST_ptr(R = EC_POINT_new(group)) in prime_field_tests() 805 || !TEST_ptr(P = EC_POINT_new(group)) in char2_curve_test() 806 || !TEST_ptr(Q = EC_POINT_new(group)) in char2_curve_test() 807 || !TEST_ptr(R = EC_POINT_new(group)) in char2_curve_test() [all …]
|
| HD | sm2_internal_test.c | 101 generator = EC_POINT_new(group); in create_EC_group() 162 pt = EC_POINT_new(group); in test_sm2_crypt() 332 pt = EC_POINT_new(group); in test_sm2_sign()
|
| HD | ec_internal_test.c | 276 P = EC_POINT_new(grp); in underflow_test() 277 Q = EC_POINT_new(grp); in underflow_test() 278 R = EC_POINT_new(grp); in underflow_test()
|
| /freebsd-14-stable/crypto/openssl/crypto/ec/ |
| HD | ec_mult.c | 172 if (((p = EC_POINT_new(group)) == NULL) in ossl_ec_scalar_mul_ladder() 173 || ((s = EC_POINT_new(group)) == NULL)) { in ossl_ec_scalar_mul_ladder() 675 *v = EC_POINT_new(group); in ossl_ec_wNAF_mul() 686 if ((tmp = EC_POINT_new(group)) == NULL) in ossl_ec_wNAF_mul() 904 if ((var[i] = EC_POINT_new(group)) == NULL) { in ossl_ec_wNAF_precompute_mult() 910 if ((tmp_point = EC_POINT_new(group)) == NULL in ossl_ec_wNAF_precompute_mult() 911 || (base = EC_POINT_new(group)) == NULL) { in ossl_ec_wNAF_precompute_mult()
|
| HD | ec_key.c | 137 dest->pub_key = EC_POINT_new(src->group); in EC_KEY_copy() 308 pub_key = EC_POINT_new(group); in ec_generate_key() 481 point = EC_POINT_new(eckey->group); in ossl_ec_key_public_check() 542 point = EC_POINT_new(eckey->group); in ossl_ec_key_pairwise_check() 615 point = EC_POINT_new(key->group); in EC_KEY_set_public_key_affine_coordinates() 881 key->pub_key = EC_POINT_new(key->group); in EC_KEY_oct2key()
|
| HD | ec_deprecated.c | 61 if ((ret = EC_POINT_new(group)) == NULL) { in EC_POINT_bn2point()
|
| HD | ec_print.c | 61 pt = EC_POINT_new(group); in EC_POINT_hex2point()
|
| HD | ec_check.c | 94 if ((point = EC_POINT_new(group)) == NULL) in EC_GROUP_check()
|
| HD | ecdh_ossl.c | 91 if ((tmp = EC_POINT_new(group)) == NULL) { in ossl_ecdh_simple_compute_key()
|
| HD | ecdsa_ossl.c | 129 if ((tmp_point = EC_POINT_new(group)) == NULL) { in ecdsa_sign_setup() 469 if ((point = EC_POINT_new(group)) == NULL) { in ossl_ecdsa_simple_verify_sig()
|
| HD | ec_lib.c | 225 dest->generator = EC_POINT_new(dest); in EC_GROUP_copy() 401 group->generator = EC_POINT_new(group); in EC_GROUP_set_generator() 716 EC_POINT *EC_POINT_new(const EC_GROUP *group) in EC_POINT_new() function 794 t = EC_POINT_new(group); in EC_POINT_dup() 1688 if ((point = EC_POINT_new(group)) == NULL) in EC_GROUP_new_from_params()
|
| HD | ec_backend.c | 424 || (pub_point = EC_POINT_new(ecg)) == NULL in ossl_ec_key_fromdata() 629 ret->pub_key = EC_POINT_new(ret->group); in ossl_ec_key_dup()
|
| /freebsd-14-stable/contrib/libfido2/fuzz/ |
| HD | wrapped.sym | 34 EC_POINT_new
|
| /freebsd-14-stable/crypto/openssl/crypto/sm2/ |
| HD | sm2_crypt.c | 164 kG = EC_POINT_new(group); in ossl_sm2_encrypt() 165 kP = EC_POINT_new(group); in ossl_sm2_encrypt() 362 C1 = EC_POINT_new(group); in ossl_sm2_decrypt()
|
| HD | sm2_sign.c | 220 kG = EC_POINT_new(group); in sm2_sig_gen() 346 pt = EC_POINT_new(group); in sm2_sig_verify()
|
| /freebsd-14-stable/crypto/openssl/doc/man3/ |
| HD | EC_POINT_new.pod | 7 EC_POINT_new, 36 EC_POINT *EC_POINT_new(const EC_GROUP *group); 105 constructed by calling the function EC_POINT_new() and providing the 221 EC_POINT_new() and EC_POINT_dup() return the newly allocated EC_POINT or NULL
|
| HD | ECPKParameters_print.pod | 39 L<EC_POINT_new(3)>, L<EC_POINT_add(3)>, L<EC_KEY_new(3)>,
|
| HD | EC_KEY_get_enc_flags.pod | 44 L<EC_GROUP_copy(3)>, L<EC_POINT_new(3)>,
|
| HD | EC_GFp_simple_method.pod | 62 L<EC_POINT_new(3)>, L<EC_POINT_add(3)>, L<EC_KEY_new(3)>,
|
| HD | EC_KEY_new.pod | 145 point_conversion_forms please see L<EC_POINT_new(3)>. 224 L<EC_GROUP_copy(3)>, L<EC_POINT_new(3)>,
|
| /freebsd-14-stable/crypto/openssh/ |
| HD | sshbuf-getput-crypto.c | 97 EC_POINT *pt = EC_POINT_new(EC_KEY_get0_group(v)); in sshbuf_get_eckey()
|
| HD | kexecdh.c | 156 if ((dh_pub = EC_POINT_new(group)) == NULL) { in kex_ecdh_dec_key_group()
|
| /freebsd-14-stable/contrib/libfido2/src/ |
| HD | es256.c | 301 if ((q = EC_POINT_new(g)) == NULL || in es256_pk_to_EVP_PKEY() 472 (q = EC_POINT_new(g)) == NULL) { in es256_derive_pk()
|
| HD | es384.c | 144 if ((q = EC_POINT_new(g)) == NULL || in es384_pk_to_EVP_PKEY()
|
| /freebsd-14-stable/secure/lib/libcrypto/man/man3/ |
| HD | Makefile | 141 MAN+= EC_POINT_new.3 1482 MLINKS+= EC_POINT_new.3 EC_POINT_bn2point.3 1483 MLINKS+= EC_POINT_new.3 EC_POINT_clear_free.3 1485 MLINKS+= EC_POINT_new.3 EC_POINT_copy.3 1487 MLINKS+= EC_POINT_new.3 EC_POINT_dup.3 1488 MLINKS+= EC_POINT_new.3 EC_POINT_free.3 1489 MLINKS+= EC_POINT_new.3 EC_POINT_get_Jprojective_coordinates_GFp.3 1490 MLINKS+= EC_POINT_new.3 EC_POINT_get_affine_coordinates.3 1491 MLINKS+= EC_POINT_new.3 EC_POINT_get_affine_coordinates_GF2m.3 1492 MLINKS+= EC_POINT_new.3 EC_POINT_get_affine_coordinates_GFp.3 [all …]
|
12