Home
last modified time | relevance | path

Searched refs:nx_crypto_dh_key_size (Results 1 – 2 of 2) sorted by relevance

/NetX-Duo-v6.3.0/crypto_libraries/src/
Dnx_crypto_dh.c137 dh_ptr -> nx_crypto_dh_key_size = NX_CRYPTO_DIFFIE_HELLMAN_GROUP_2_KEY_SIZE; in _nx_crypto_dh_setup()
145 modulus.nx_crypto_huge_number_size = dh_ptr -> nx_crypto_dh_key_size >> HN_SIZE_SHIFT; in _nx_crypto_dh_setup()
146 modulus.nx_crypto_huge_buffer_size = dh_ptr -> nx_crypto_dh_key_size; in _nx_crypto_dh_setup()
161 …NX_CRYPTO_HUGE_NUMBER_INITIALIZE(&public_key, scratch_buf_ptr, dh_ptr -> nx_crypto_dh_key_size << … in _nx_crypto_dh_setup()
165 private_key.nx_crypto_huge_number_size = dh_ptr -> nx_crypto_dh_key_size >> HN_SIZE_SHIFT; in _nx_crypto_dh_setup()
187 dh_ptr -> nx_crypto_dh_key_size, local_public_key_len_ptr); in _nx_crypto_dh_setup()
269 if (0 == dh_ptr -> nx_crypto_dh_key_size) in _nx_crypto_dh_compute_secret()
275 if (remote_public_key_len > dh_ptr -> nx_crypto_dh_key_size) in _nx_crypto_dh_compute_secret()
281 key_size = dh_ptr -> nx_crypto_dh_key_size; in _nx_crypto_dh_compute_secret()
/NetX-Duo-v6.3.0/crypto_libraries/inc/
Dnx_crypto_dh.h83 UINT nx_crypto_dh_key_size; member