Home
last modified time | relevance | path

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

/net-tools-3.4.0/mbedtls-2.4.0/library/
Dx509_crt.c149 static int x509_profile_check_md_alg( const mbedtls_x509_crt_profile *profile, in x509_profile_check_md_alg() argument
152 if( ( profile->allowed_mds & MBEDTLS_X509_ID_FLAG( md_alg ) ) != 0 ) in x509_profile_check_md_alg()
162 static int x509_profile_check_pk_alg( const mbedtls_x509_crt_profile *profile, in x509_profile_check_pk_alg() argument
165 if( ( profile->allowed_pks & MBEDTLS_X509_ID_FLAG( pk_alg ) ) != 0 ) in x509_profile_check_pk_alg()
175 static int x509_profile_check_key( const mbedtls_x509_crt_profile *profile, in x509_profile_check_key() argument
182 if( mbedtls_pk_get_bitlen( pk ) >= profile->rsa_min_bitlen ) in x509_profile_check_key()
196 if( ( profile->allowed_curves & MBEDTLS_X509_ID_FLAG( gid ) ) != 0 ) in x509_profile_check_key()
1631 const mbedtls_x509_crt_profile *profile ) in x509_crt_verifycrl() argument
1665 if( x509_profile_check_md_alg( profile, crl_list->sig_md ) != 0 ) in x509_crt_verifycrl()
1668 if( x509_profile_check_pk_alg( profile, crl_list->sig_pk ) != 0 ) in x509_crt_verifycrl()
[all …]
Dssl_tls.c5719 const mbedtls_x509_crt_profile *profile ) in mbedtls_ssl_conf_cert_profile() argument
5721 conf->cert_profile = profile; in mbedtls_ssl_conf_cert_profile()
/net-tools-3.4.0/mbedtls-2.4.0/include/mbedtls/
Dx509_crt.h336 const mbedtls_x509_crt_profile *profile,
Dssl.h1574 const mbedtls_x509_crt_profile *profile );
/net-tools-3.4.0/mbedtls-2.4.0/
DChangeLog192 size/curve against the profile. Before that, there was no way to set a
267 * Made X509 profile pointer const in mbedtls_ssl_conf_cert_profile() to allow
337 * Added a concept of X.509 cerificate verification profile that controls
740 * Optimize for RAM usage in example config.h for NSA Suite B profile.