Home
last modified time | relevance | path

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

/optee_os/lib/libmbedtls/mbedtls/library/
H A Dx509_crt.c173 static int x509_profile_check_md_alg(const mbedtls_x509_crt_profile *profile, in x509_profile_check_md_alg() argument
180 if ((profile->allowed_mds & MBEDTLS_X509_ID_FLAG(md_alg)) != 0) { in x509_profile_check_md_alg()
191 static int x509_profile_check_pk_alg(const mbedtls_x509_crt_profile *profile, in x509_profile_check_pk_alg() argument
198 if ((profile->allowed_pks & MBEDTLS_X509_ID_FLAG(pk_alg)) != 0) { in x509_profile_check_pk_alg()
209 static int x509_profile_check_key(const mbedtls_x509_crt_profile *profile, in x509_profile_check_key() argument
216 if (mbedtls_pk_get_bitlen(pk) >= profile->rsa_min_bitlen) { in x509_profile_check_key()
234 if ((profile->allowed_curves & MBEDTLS_X509_ID_FLAG(gid)) != 0) { in x509_profile_check_key()
2012 const mbedtls_x509_crt_profile *profile, in x509_crt_verifycrl() argument
2047 if (x509_profile_check_md_alg(profile, crl_list->sig_md) != 0) { in x509_crt_verifycrl()
2051 if (x509_profile_check_pk_alg(profile, crl_list->sig_pk) != 0) { in x509_crt_verifycrl()
[all …]
H A Dssl_tls.c1819 const mbedtls_x509_crt_profile *profile) in mbedtls_ssl_conf_cert_profile() argument
1821 conf->cert_profile = profile; in mbedtls_ssl_conf_cert_profile()
/optee_os/lib/libmbedtls/mbedtls/include/mbedtls/
H A Dx509_crt.h714 const mbedtls_x509_crt_profile *profile,
748 const mbedtls_x509_crt_profile *profile,
814 const mbedtls_x509_crt_profile *profile,
H A Dssl.h3575 const mbedtls_x509_crt_profile *profile);
4297 static inline const char *mbedtls_ssl_get_srtp_profile_as_string(mbedtls_ssl_srtp_profile profile) in mbedtls_ssl_get_srtp_profile_as_string() argument
4299 switch (profile) { in mbedtls_ssl_get_srtp_profile_as_string()
/optee_os/core/arch/arm/dts/
H A Dstm32mp131.dtsi37 /* Non‑overdrive OPP mission profile */
/optee_os/lib/libmbedtls/mbedtls/
H A DChangeLog2026 verification profile.
4612 size/curve against the profile. Before that, there was no way to set a
4687 * Made X509 profile pointer const in mbedtls_ssl_conf_cert_profile() to allow
4757 * Added a concept of X.509 cerificate verification profile that controls
5160 * Optimize for RAM usage in example config.h for NSA Suite B profile.