Searched refs:EC_POINT_new (Results 1 – 25 of 34) sorted by relevance
12
/openssl/test/ |
H A D | 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 …]
|
H A D | 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()
|
H A D | ec_internal_test.c | 277 P = EC_POINT_new(grp); in underflow_test() 278 Q = EC_POINT_new(grp); in underflow_test() 279 R = EC_POINT_new(grp); in underflow_test()
|
/openssl/crypto/ec/ |
H A D | ec_mult.c | 166 if (((p = EC_POINT_new(group)) == NULL) in ossl_ec_scalar_mul_ladder() 167 || ((s = EC_POINT_new(group)) == NULL)) { in ossl_ec_scalar_mul_ladder() 664 *v = EC_POINT_new(group); in ossl_ec_wNAF_mul() 675 if ((tmp = EC_POINT_new(group)) == NULL) in ossl_ec_wNAF_mul() 891 if ((var[i] = EC_POINT_new(group)) == NULL) { in ossl_ec_wNAF_precompute_mult() 897 if ((tmp_point = EC_POINT_new(group)) == NULL in ossl_ec_wNAF_precompute_mult() 898 || (base = EC_POINT_new(group)) == NULL) { in ossl_ec_wNAF_precompute_mult()
|
H A D | ec_key.c | 138 dest->pub_key = EC_POINT_new(src->group); in EC_KEY_copy() 259 EC_POINT *pub_key2 = EC_POINT_new(eckey->group); in ecdsa_keygen_knownanswer_test() 359 pub_key = EC_POINT_new(group); in ec_generate_key() 423 eckey->pub_key = EC_POINT_new(eckey->group); in ossl_ec_generate_key_dhkem() 576 point = EC_POINT_new(eckey->group); in ossl_ec_key_public_check() 637 point = EC_POINT_new(eckey->group); in ossl_ec_key_pairwise_check() 710 point = EC_POINT_new(key->group); in EC_KEY_set_public_key_affine_coordinates() 976 key->pub_key = EC_POINT_new(key->group); in EC_KEY_oct2key()
|
H A D | ec_deprecated.c | 59 if ((ret = EC_POINT_new(group)) == NULL) { in EC_POINT_bn2point()
|
H A D | ec_print.c | 55 pt = EC_POINT_new(group); in EC_POINT_hex2point()
|
H A D | ec_check.c | 94 if ((point = EC_POINT_new(group)) == NULL) in EC_GROUP_check()
|
H A D | ecdh_ossl.c | 94 if ((tmp = EC_POINT_new(group)) == NULL) { in ossl_ecdh_simple_compute_key()
|
H A D | ec_lib.c | 229 dest->generator = EC_POINT_new(dest); in EC_GROUP_copy() 403 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 796 t = EC_POINT_new(group); in EC_POINT_dup() 1690 if ((point = EC_POINT_new(group)) == NULL) in EC_GROUP_new_from_params()
|
H A D | ecdsa_ossl.c | 175 if ((tmp_point = EC_POINT_new(group)) == NULL) { in ecdsa_sign_setup() 527 if ((point = EC_POINT_new(group)) == NULL) { in ossl_ecdsa_simple_verify_sig()
|
H A D | ecp_nistz256.c | 865 P = EC_POINT_new(group); in ecp_nistz256_mult_precompute() 866 T = EC_POINT_new(group); in ecp_nistz256_mult_precompute() 986 EC_POINT *pre_comp_generator = EC_POINT_new(group); in ecp_nistz256_points_mul() 1510 if ((P = EC_POINT_new(group)) == NULL) { in ecp_nistz256group_full_init() 1533 group->generator = EC_POINT_new(group); in ecp_nistz256group_full_init()
|
H A D | 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()
|
H A D | ec_asn1.c | 714 if ((point = EC_POINT_new(ret)) == NULL) in EC_GROUP_new_from_ecparameters() 979 ret->pub_key = EC_POINT_new(ret->group); in d2i_ECPrivateKey()
|
H A D | ecp_nistp224.c | 1445 generator = EC_POINT_new(group); in ossl_ec_GFp_nistp224_points_mul() 1631 generator = EC_POINT_new(group); in ossl_ec_GFp_nistp224_precompute_mult()
|
H A D | ec_curve.c | 3230 if ((P = EC_POINT_new(group)) == NULL) { in ec_group_new_from_data()
|
/openssl/crypto/sm2/ |
H A D | sm2_crypt.c | 151 kG = EC_POINT_new(group); in ossl_sm2_encrypt() 152 kP = EC_POINT_new(group); in ossl_sm2_encrypt() 347 C1 = EC_POINT_new(group); in ossl_sm2_decrypt()
|
H A D | sm2_sign.c | 223 kG = EC_POINT_new(group); in sm2_sig_gen() 353 pt = EC_POINT_new(group); in sm2_sig_verify()
|
/openssl/doc/man3/ |
H A D | 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
|
H A D | ECPKParameters_print.pod | 39 L<EC_POINT_new(3)>, L<EC_POINT_add(3)>, L<EC_KEY_new(3)>,
|
H A D | EC_KEY_get_enc_flags.pod | 44 L<EC_GROUP_copy(3)>, L<EC_POINT_new(3)>,
|
H A D | EC_GFp_simple_method.pod | 62 L<EC_POINT_new(3)>, L<EC_POINT_add(3)>, L<EC_KEY_new(3)>,
|
H A D | 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)>,
|
H A D | EC_POINT_add.pod | 82 L<EC_POINT_new(3)>, L<EC_KEY_new(3)>,
|
H A D | EC_GROUP_new.pod | 209 L<EC_POINT_new(3)>, L<EC_POINT_add(3)>, L<EC_KEY_new(3)>,
|
Completed in 65 milliseconds
12