Home
last modified time | relevance | path

Searched refs:EC_POINT_mul (Results 1 – 23 of 23) sorted by relevance

/third_party/openssl/doc/man3/
DEC_POINT_add.pod5 …OINT_cmp, EC_POINT_make_affine, EC_POINTs_make_affine, EC_POINTs_mul, EC_POINT_mul, EC_GROUP_preco…
18 int EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *n,
51 EC_POINT_mul calculates the value generator * B<n> + B<q> * B<m> and stores the result in B<r>.
56 … * B<n> + B<q[0]> * B<m[0]> + ... + B<q[num-1]> * B<m[num-1]>. As for EC_POINT_mul the value B<n> …
58 Modern versions should instead use EC_POINT_mul(), combined (if needed) with EC_POINT_add() in such…
69 EC_POINTs_make_affine, EC_POINTs_make_affine, EC_POINT_mul, EC_POINTs_mul and EC_GROUP_precompute_m…
/third_party/openssl/test/
Dectest.c59 || !TEST_true(EC_POINT_mul(group, Q, order, NULL, NULL, ctx)) in group_order_tests()
64 || !TEST_true(EC_POINT_mul(group, Q, order, NULL, NULL, ctx)) in group_order_tests()
68 || !TEST_true(EC_POINT_mul(group, Q, n1, NULL, NULL, ctx)) in group_order_tests()
71 || !TEST_true(EC_POINT_mul(group, Q, n1, NULL, NULL, ctx)) in group_order_tests()
87 || !TEST_true(EC_POINT_mul(group, P, n1, NULL, NULL, ctx)) in group_order_tests()
92 || !TEST_true(EC_POINT_mul(group, Q, NULL, P, n1, ctx)) in group_order_tests()
97 || !TEST_true(EC_POINT_mul(group, Q, NULL, P, n2, ctx)) in group_order_tests()
102 || !TEST_true(EC_POINT_mul(group, Q, NULL, P, n2, ctx)) in group_order_tests()
108 if (!TEST_true(EC_POINT_mul(group, Q, NULL, P, n2, ctx)) in group_order_tests()
1368 EC_POINT_mul(NISTP, Q, n, NULL, NULL, ctx); in nistp_single_test()
[all …]
Dsm2_internal_test.c164 || !TEST_true(EC_POINT_mul(group, pt, priv, NULL, NULL, NULL)) in test_sm2_crypt()
332 || !TEST_true(EC_POINT_mul(group, pt, priv, NULL, NULL, NULL)) in test_sm2_sign()
Decstresstest.c54 if (!TEST_true(EC_POINT_mul(group, point, NULL, point, scalar, NULL)) in walk_curve()
Dec_internal_test.c238 || !TEST_true(EC_POINT_mul(grp, Q, NULL, P, k, ctx)) in underflow_test()
/third_party/openssl/crypto/sm2/
Dsm2_crypt.c187 if (!EC_POINT_mul(group, kG, k, NULL, NULL, ctx) in ossl_sm2_encrypt()
189 || !EC_POINT_mul(group, kP, NULL, P, k, ctx) in ossl_sm2_encrypt()
352 || !EC_POINT_mul(group, C1, NULL, C1, EC_KEY_get0_private_key(key), in ossl_sm2_decrypt()
Dsm2_sign.c257 if (!EC_POINT_mul(group, kG, k, NULL, NULL, ctx) in sm2_sig_gen()
371 if (!EC_POINT_mul(group, pt, s, EC_KEY_get0_public_key(key), t, ctx) in sm2_sig_verify()
/third_party/rust/crates/rust-openssl/openssl/src/
Dec.rs342 #[corresponds(EC_POINT_mul)]
352 cvt(ffi::EC_POINT_mul( in mul()
365 #[corresponds(EC_POINT_mul)]
374 cvt(ffi::EC_POINT_mul( in mul_generator()
387 #[corresponds(EC_POINT_mul)]
397 cvt(ffi::EC_POINT_mul( in mul_full()
/third_party/openssl/crypto/ec/
Dec_key.c315 if (!EC_POINT_mul(group, pub_key, priv_key, NULL, NULL, ctx)) in ec_generate_key()
370 ret = EC_POINT_mul(eckey->group, eckey->pub_key, eckey->priv_key, NULL, in ossl_ec_key_simple_generate_public_key()
491 if (!EC_POINT_mul(eckey->group, point, NULL, eckey->pub_key, order, ctx)) { in ossl_ec_key_public_check()
547 if (!EC_POINT_mul(eckey->group, point, eckey->priv_key, NULL, NULL, ctx)) { in ossl_ec_key_pairwise_check()
Dec_check.c104 if (!EC_POINT_mul(group, point, order, NULL, NULL, ctx)) in EC_GROUP_check()
Decdh_ossl.c96 if (!EC_POINT_mul(group, tmp, NULL, pub_key, priv_key, ctx)) { in ossl_ecdh_simple_compute_key()
Decdsa_ossl.c146 if (!EC_POINT_mul(group, tmp_point, k, NULL, NULL, ctx)) { in ecdsa_sign_setup()
443 if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx)) { in ossl_ecdsa_simple_verify_sig()
Dec_lib.c1114 int EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar, in EC_POINT_mul() function
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
Dec.rs170 pub fn EC_POINT_mul( in EC_POINT_mul() function
/third_party/openssl/include/openssl/
Dec.h874 int EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *n,
/third_party/openssl/ohos_lite/include/openssl/
Dec.h754 int EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *n,
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
Dcrypto_openssl.c1881 return EC_POINT_mul(e->group, (EC_POINT *) res, NULL, in crypto_ec_point_mul()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
Ddpp.c2734 EC_POINT_mul(group, l, NULL, BI_point, sum, bnctx) != 1 || in dpp_auth_derive_l_responder()
2796 EC_POINT_mul(group, l, NULL, sum, bI_bn, bnctx) != 1 || in dpp_auth_derive_l_initiator()
6721 EC_POINT_mul(group2, Qi, NULL, Pi_point, hash_bn, bnctx) != 1) in dpp_pkex_derive_Qi()
6805 EC_POINT_mul(group2, Qr, NULL, Pr_point, hash_bn, bnctx) != 1) in dpp_pkex_derive_Qr()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
Dcrypto_openssl.c1961 return EC_POINT_mul(e->group, (EC_POINT *) res, NULL, in crypto_ec_point_mul()
/third_party/openssl/doc/man7/
Dmigration_guide.pod1662 L<EC_POINT_mul(3)> function.
/third_party/node/src/
Dnode_crypto.cc5749 if (!EC_POINT_mul(ecdh->group_, pub.get(), priv_key, in SetPrivateKey()
/third_party/openssl/
DCHANGES.md2758 * Remove ECDSA nonce padding: EC_POINT_mul is now responsible for
11216 makes subsequent invocations of EC_POINTs_mul() or EC_POINT_mul()
11458 * Optionally dispatch EC_POINT_mul(), EC_POINT_precompute_mult()
13336 EC_POINT_mul is a simple wrapper function for the typical case
/third_party/openssl/util/
Dlibcrypto.num112 EC_POINT_mul 114 3_0_0 EXIST::FUNCTION:EC