Home
last modified time | relevance | path

Searched refs:EC_POINT_new (Results 1 – 25 of 52) sorted by relevance

123

/freebsd/crypto/krb5/src/plugins/preauth/spake/
H A Dopenssl.c119 gd->M = EC_POINT_new(gd->group); in ossl_init()
125 gd->N = EC_POINT_new(gd->group); in ossl_init()
178 pub = EC_POINT_new(gdata->group); in ossl_keygen()
232 pub = EC_POINT_new(gdata->group); in ossl_result()
243 result = EC_POINT_new(gdata->group); in ossl_result()
/freebsd/crypto/openssl/test/
H A Dectest.c52 || !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()
191 if (!TEST_ptr(P = EC_POINT_new(group)) in prime_field_tests()
192 || !TEST_ptr(Q = EC_POINT_new(group)) in prime_field_tests()
193 || !TEST_ptr(R = EC_POINT_new(group)) in prime_field_tests()
793 || !TEST_ptr(P = EC_POINT_new(group)) in char2_curve_test()
794 || !TEST_ptr(Q = EC_POINT_new(group)) in char2_curve_test()
795 || !TEST_ptr(R = EC_POINT_new(group)) in char2_curve_test()
[all …]
H A Dsm2_internal_test.c100 generator = EC_POINT_new(group); in create_EC_group()
161 pt = EC_POINT_new(group); in test_sm2_crypt()
329 pt = EC_POINT_new(group); in test_sm2_sign()
H A Dec_internal_test.c270 P = EC_POINT_new(grp); in underflow_test()
271 Q = EC_POINT_new(grp); in underflow_test()
272 R = EC_POINT_new(grp); in underflow_test()
/freebsd/crypto/openssl/crypto/ec/
H A Dec_mult.c167 if (((p = EC_POINT_new(group)) == NULL) in ossl_ec_scalar_mul_ladder()
168 || ((s = EC_POINT_new(group)) == NULL)) { in ossl_ec_scalar_mul_ladder()
661 *v = EC_POINT_new(group); in ossl_ec_wNAF_mul()
672 if ((tmp = EC_POINT_new(group)) == NULL) in ossl_ec_wNAF_mul()
886 if ((var[i] = EC_POINT_new(group)) == NULL) { in ossl_ec_wNAF_precompute_mult()
892 if ((tmp_point = EC_POINT_new(group)) == NULL in ossl_ec_wNAF_precompute_mult()
893 || (base = EC_POINT_new(group)) == NULL) { in ossl_ec_wNAF_precompute_mult()
H A Dec_key.c138 dest->pub_key = EC_POINT_new(src->group); in EC_KEY_copy()
267 if ((pub_key2 = EC_POINT_new(eckey->group)) == NULL) in ecdsa_keygen_knownanswer_test()
358 pub_key = EC_POINT_new(group); in ec_generate_key()
422 eckey->pub_key = EC_POINT_new(eckey->group); in ossl_ec_generate_key_dhkem()
575 point = EC_POINT_new(eckey->group); in ossl_ec_key_public_check()
636 point = EC_POINT_new(eckey->group); in ossl_ec_key_pairwise_check()
707 point = EC_POINT_new(key->group); in EC_KEY_set_public_key_affine_coordinates()
972 key->pub_key = EC_POINT_new(key->group); in EC_KEY_oct2key()
H A Dec_deprecated.c59 if ((ret = EC_POINT_new(group)) == NULL) { in EC_POINT_bn2point()
H A Dec_print.c55 pt = EC_POINT_new(group); in EC_POINT_hex2point()
H A Dec_check.c94 if ((point = EC_POINT_new(group)) == NULL) in EC_GROUP_check()
H A Decdh_ossl.c94 if ((tmp = EC_POINT_new(group)) == NULL) { in ossl_ecdh_simple_compute_key()
H A Dec_lib.c232 dest->generator = EC_POINT_new(dest); in EC_GROUP_copy()
407 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()
1691 if ((point = EC_POINT_new(group)) == NULL) in EC_GROUP_new_from_params()
H A Decdsa_ossl.c175 if ((tmp_point = EC_POINT_new(group)) == NULL) { in ecdsa_sign_setup()
524 if ((point = EC_POINT_new(group)) == NULL) { in ossl_ecdsa_simple_verify_sig()
H A Decp_nistz256.c857 P = EC_POINT_new(group); in ecp_nistz256_mult_precompute()
858 T = EC_POINT_new(group); in ecp_nistz256_mult_precompute()
977 EC_POINT *pre_comp_generator = EC_POINT_new(group); in ecp_nistz256_points_mul()
1506 if ((P = EC_POINT_new(group)) == NULL) { in ecp_nistz256group_full_init()
1529 group->generator = EC_POINT_new(group); in ecp_nistz256group_full_init()
/freebsd/crypto/openssl/crypto/sm2/
H A Dsm2_crypt.c151 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 Dsm2_sign.c227 kG = EC_POINT_new(group); in sm2_sig_gen()
357 pt = EC_POINT_new(group); in sm2_sig_verify()
/freebsd/contrib/libfido2/fuzz/
H A Dwrapped.sym34 EC_POINT_new
/freebsd/crypto/openssl/doc/man3/
H A DEC_POINT_new.pod7 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 DECPKParameters_print.pod39 L<EC_POINT_new(3)>, L<EC_POINT_add(3)>, L<EC_KEY_new(3)>,
H A DEC_KEY_get_enc_flags.pod44 L<EC_GROUP_copy(3)>, L<EC_POINT_new(3)>,
H A DEC_GFp_simple_method.pod62 L<EC_POINT_new(3)>, L<EC_POINT_add(3)>, L<EC_KEY_new(3)>,
/freebsd/crypto/openssh/
H A Dsshbuf-getput-crypto.c97 EC_POINT *pt = EC_POINT_new(EC_KEY_get0_group(v)); in sshbuf_get_eckey()
H A Dkexecdh.c155 if ((dh_pub = EC_POINT_new(group)) == NULL) { in kex_ecdh_dec_key_group()
/freebsd/contrib/libfido2/src/
H A Des256.c301 if ((q = EC_POINT_new(g)) == NULL || in es256_pk_to_EVP_PKEY()
472 (q = EC_POINT_new(g)) == NULL) { in es256_derive_pk()
H A Des384.c144 if ((q = EC_POINT_new(g)) == NULL || in es384_pk_to_EVP_PKEY()
/freebsd/secure/lib/libcrypto/man/man3/
H A DMakefile151 MAN+= EC_POINT_new.3
1689 MLINKS+= EC_POINT_new.3 EC_POINT_bn2point.3
1690 MLINKS+= EC_POINT_new.3 EC_POINT_clear_free.3
1691 MLINKS+= EC_POINT_new.3 EC_POINT_copy.3
1692 MLINKS+= EC_POINT_new.3 EC_POINT_dup.3
1693 MLINKS+= EC_POINT_new.3 EC_POINT_free.3
1694 MLINKS+= EC_POINT_new.3 EC_POINT_get_Jprojective_coordinates_GFp.3
1695 MLINKS+= EC_POINT_new.3 EC_POINT_get_affine_coordinates.3
1696 MLINKS+= EC_POINT_new.3 EC_POINT_get_affine_coordinates_GF2m.3
1697 MLINKS+= EC_POINT_new.3 EC_POINT_get_affine_coordinates_GFp.3
[all …]

123