Home
last modified time | relevance | path

Searched refs:nx_crypto_ec_multiple (Results 1 – 5 of 5) sorted by relevance

/NetX-Duo-v6.3.0/crypto_libraries/src/
Dnx_crypto_ecjpake.c1243 curve -> nx_crypto_ec_multiple(curve, public_key, &h, &temp1, scratch); in _nx_crypto_ecjpake_schnorr_zkp_verify()
1244 curve -> nx_crypto_ec_multiple(curve, g, r, &temp2, scratch); in _nx_crypto_ecjpake_schnorr_zkp_verify()
1342 curve -> nx_crypto_ec_multiple(curve, g, private_key, public_key, scratch); in _nx_crypto_ecjpake_public_key_generate()
1427 curve -> nx_crypto_ec_multiple(curve, &temp1, x2, &temp2, scratch); in _nx_crypto_ecjpake_pre_master_secret_generate()
1428 curve -> nx_crypto_ec_multiple(curve, &temp2, s, &temp1, scratch); in _nx_crypto_ecjpake_pre_master_secret_generate()
1432 curve -> nx_crypto_ec_multiple(curve, &temp2, x2, &temp1, scratch); in _nx_crypto_ecjpake_pre_master_secret_generate()
Dnx_crypto_ecdsa.c464 curve -> nx_crypto_ec_multiple(curve, &curve -> nx_crypto_ec_g, &u1, &pt, scratch); in _nx_crypto_ecdsa_verify()
465 curve -> nx_crypto_ec_multiple(curve, &pubkey, &u2, &pt2, scratch); in _nx_crypto_ecdsa_verify()
Dnx_crypto_ecdh.c432 … curve -> nx_crypto_ec_multiple(curve, &public_key, &private_key, &shared_secret, scratch_buf_ptr); in _nx_crypto_ecdh_compute_secret()
1183 … curve -> nx_crypto_ec_multiple(curve, &public_key, &private_key, &shared_secret, scratch_buf_ptr); in _nx_crypto_ecdh_compute_secret_x25519_448()
Dnx_crypto_ec.c3187 curve -> nx_crypto_ec_multiple(curve, g, private_key, public_key, scratch); in _nx_crypto_ec_key_pair_generation_extra()
3418 curve -> nx_crypto_ec_multiple(curve, g, &d, &array[0], scratch_ptr); in _nx_crypto_ec_precomputation()
3426 curve -> nx_crypto_ec_multiple(curve, &array[(1 << (i - 1)) - 2], &d, in _nx_crypto_ec_precomputation()
3453 curve -> nx_crypto_ec_multiple(curve, g, &d, &array[0], scratch_ptr); in _nx_crypto_ec_precomputation()
3459 curve -> nx_crypto_ec_multiple(curve, &array[0], &d, &array[1], scratch_ptr); in _nx_crypto_ec_precomputation()
3467 curve -> nx_crypto_ec_multiple(curve, &array[(1 << (i - 1)) - 1], &d, in _nx_crypto_ec_precomputation()
5029 curve -> nx_crypto_ec_multiple(curve, g, private_key, public_key, scratch); in _nx_crypto_ec_key_pair_generation_x25519_448()
/NetX-Duo-v6.3.0/crypto_libraries/inc/
Dnx_crypto_ec.h148 VOID (*nx_crypto_ec_multiple)(struct NX_CRYPTO_EC_STRUCT *curve, member