Searched refs:profile (Results 1 – 12 of 12) sorted by relevance
/mbedtls-latest/library/ |
D | x509_crt.c | 173 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 …]
|
D | ssl_tls.c | 1806 const mbedtls_x509_crt_profile *profile) in mbedtls_ssl_conf_cert_profile() argument 1808 conf->cert_profile = profile; in mbedtls_ssl_conf_cert_profile()
|
/mbedtls-latest/tests/suites/ |
D | test_suite_x509parse.function | 21 /* Test-only profile allowing all digests, PK algorithms, and curves. */ 31 profile. */ 722 const mbedtls_x509_crt_profile *profile; 734 profile = &mbedtls_x509_crt_profile_default; 736 profile = &mbedtls_x509_crt_profile_next; 738 profile = &mbedtls_x509_crt_profile_suiteb; 740 profile = &compat_profile; 742 profile = &profile_all; 744 TEST_FAIL("Unknown algorithm profile"); 764 profile, [all …]
|
D | test_suite_x509parse.data | 674 X509 CRT verification #14 (Valid Cert SHA1 Digest explicitly allowed in profile) 678 X509 CRT verification #14 (Valid Cert SHA1 Digest forbidden in default profile) 1022 X509 CRT verification #96 (next profile Invalid Cert SHA224 Digest) 1026 X509 CRT verification #97 (next profile Valid Cert SHA256 Digest) 2668 X509 CRT verify chain #11 (valid chain, missing profile) 2672 X509 CRT verify chain #12 (suiteb profile, RSA root) 2676 X509 CRT verify chain #13 (RSA only profile, EC root) 2680 X509 CRT verify chain #13 (RSA only profile, EC trusted EE) 2684 X509 CRT verify chain #14 (RSA-3072 profile, root key too small) 2688 X509 CRT verify chain #15 (suiteb profile, rsa intermediate) [all …]
|
/mbedtls-latest/programs/test/ |
D | dlopen.c | 66 const mbedtls_x509_crt_profile *profile = in main() local 70 X509_SO_FILENAME, (unsigned) profile->allowed_mds); in main()
|
/mbedtls-latest/include/mbedtls/ |
D | x509_crt.h | 714 const mbedtls_x509_crt_profile *profile, 748 const mbedtls_x509_crt_profile *profile, 814 const mbedtls_x509_crt_profile *profile,
|
D | ssl.h | 3477 const mbedtls_x509_crt_profile *profile); 4186 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 4188 switch (profile) { in mbedtls_ssl_get_srtp_profile_as_string()
|
/mbedtls-latest/docs/ |
D | 3.0-migration-guide.md | 1014 …profile (`mbedtls_x509_crt_profile_default`) and the default curve and hash selection in TLS have … 1022 …oved from the default profile, call `mbedtls_x509_crt_verify_with_profile` instead of `mbedtls_x50…
|
/mbedtls-latest/docs/architecture/ |
D | tls13-support.md | 75 Note that in absence of an application profile standard specifying otherwise
|
D | psa-keystore-design.md | 79 …somewhat (slightly more code size, and more risk), and this changes the RAM usage profile somewhat.
|
/mbedtls-latest/docs/architecture/psa-migration/ |
D | md-cipher-dispatch.md | 344 The primary target is a configuration like TF-M's medium profile, plus TLS with only AEAD ciphersui…
|
/mbedtls-latest/ |
D | ChangeLog | 1833 verification profile. 4419 size/curve against the profile. Before that, there was no way to set a 4494 * Made X509 profile pointer const in mbedtls_ssl_conf_cert_profile() to allow 4564 * Added a concept of X.509 cerificate verification profile that controls 4967 * Optimize for RAM usage in example config.h for NSA Suite B profile.
|