Home
last modified time | relevance | path

Searched refs:cipher_entry (Results 1 – 3 of 3) sorted by relevance

/NetX-Duo-v6.2.1/nx_secure/src/
Dnx_secure_tls_session_create_ext.c132 NX_SECURE_TLS_CIPHERSUITE_INFO *cipher_entry; in _map_tls_ciphersuites() local
161 cipher_entry = crypto_table->nx_secure_tls_ciphersuite_lookup_table; in _map_tls_ciphersuites()
275 cipher_entry->nx_secure_tls_ciphersuite = cipher_map[suite]->nx_crypto_ciphersuite_id; in _map_tls_ciphersuites()
303 cipher_entry = &cipher_entry[1]; in _map_tls_ciphersuites()
331 cipher_entry->nx_secure_tls_public_cipher = cipher_method; in _map_tls_ciphersuites()
335 cipher_entry->nx_secure_tls_public_auth = cipher_method; in _map_tls_ciphersuites()
339 cipher_entry->nx_secure_tls_hash = cipher_method; in _map_tls_ciphersuites()
340cipher_entry->nx_secure_tls_hash_size = (USHORT)(cipher_method->nx_crypto_ICV_size_in_bits >> 3); in _map_tls_ciphersuites()
344 cipher_entry->nx_secure_tls_session_cipher = cipher_method; in _map_tls_ciphersuites()
345cipher_entry->nx_secure_tls_session_key_size = (UCHAR)cipher_map[suite]->nx_crypto_symmetric_key_s… in _map_tls_ciphersuites()
[all …]
Dnx_secure_tls_process_clienthello.c116 USHORT cipher_entry; in _nx_secure_tls_process_clienthello() local
485 cipher_entry = (USHORT)((ciphersuite_list[i] << 8) + ciphersuite_list[i + 1]); in _nx_secure_tls_process_clienthello()
497 …status = _nx_secure_tls_ciphersuite_lookup(tls_session, cipher_entry, &ciphersuite_info, &new_ciph… in _nx_secure_tls_process_clienthello()
514 if (cipher_entry == TLS_EMPTY_RENEGOTIATION_INFO_SCSV) in _nx_secure_tls_process_clienthello()
535 if (cipher_entry == TLS_FALLBACK_NOTIFY_SCSV) in _nx_secure_tls_process_clienthello()
Dnx_secure_dtls_process_clienthello.c107 USHORT cipher_entry; in _nx_secure_dtls_process_clienthello() local
382 cipher_entry = (USHORT)((ciphersuite_list[i] << 8) + ciphersuite_list[i + 1]); in _nx_secure_dtls_process_clienthello()
384 …status = _nx_secure_tls_ciphersuite_lookup(tls_session, cipher_entry, &ciphersuite_info, &new_ciph… in _nx_secure_dtls_process_clienthello()