Home
last modified time | relevance | path

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

/net-tools-latest/mbedtls-2.4.0/library/
Dssl_srv.c711 const mbedtls_ssl_ciphersuite_t *suite_info; in ssl_ciphersuite_match() local
713 suite_info = mbedtls_ssl_ciphersuite_from_id( suite_id ); in ssl_ciphersuite_match()
714 if( suite_info == NULL ) in ssl_ciphersuite_match()
720 MBEDTLS_SSL_DEBUG_MSG( 3, ( "trying ciphersuite: %s", suite_info->name ) ); in ssl_ciphersuite_match()
722 if( suite_info->min_minor_ver > ssl->minor_ver || in ssl_ciphersuite_match()
723 suite_info->max_minor_ver < ssl->minor_ver ) in ssl_ciphersuite_match()
731 ( suite_info->flags & MBEDTLS_CIPHERSUITE_NODTLS ) ) in ssl_ciphersuite_match()
737 suite_info->cipher == MBEDTLS_CIPHER_ARC4_128 ) in ssl_ciphersuite_match()
745 if( suite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_ECJPAKE && in ssl_ciphersuite_match()
756 if( mbedtls_ssl_ciphersuite_uses_ec( suite_info ) && in ssl_ciphersuite_match()
[all …]
Dssl_cli.c1405 const mbedtls_ssl_ciphersuite_t *suite_info; local
1628 suite_info = mbedtls_ssl_ciphersuite_from_id( ssl->session_negotiate->ciphersuite );
1629 if( suite_info == NULL
1632 suite_info->cipher == MBEDTLS_CIPHER_ARC4_128 )
1640 MBEDTLS_SSL_DEBUG_MSG( 3, ( "server hello, chosen ciphersuite: %s", suite_info->name ) );