Searched refs:suite (Results 1 – 25 of 31) sorted by relevance
12
/mbedtls-latest/tests/scripts/ |
D | run-test-suites.pl | 78 for my $suite (@suites) 80 print "$suite ", "." x ( 72 - length($suite) - 2 - 4 ), " "; 81 if( $suite =~ /$skip_re/o ) { 87 my $command = "$prefix$suite"; 100 pad_print_center( 72, '-', "Begin $suite" ); 102 pad_print_center( 72, '-', "End $suite" ); 105 push @failed_suites, $suite; 108 pad_print_center( 72, '-', "Begin $suite" ); 110 pad_print_center( 72, '-', "End $suite" );
|
D | analyze_outcomes.py | 184 (_platform, component, suite, case, result, _cause) = line.split(';') 188 suite_case = ';'.join([suite, case])
|
/mbedtls-latest/docs/architecture/psa-migration/ |
D | outcome-analysis.sh | 83 suite=${data%.data} 84 SUITES="$SUITES $suite" 92 suite=${extra%.sh} 93 SUITES="$SUITES $suite" 101 suite="$3" 103 pattern_suite=";$suite;" 111 name=${suite#test_suite_} 126 for suite in $SUITES; do 127 if compare_suite "$1" "$2" "$suite"; then :; else 128 failed="$failed $suite"
|
/mbedtls-latest/tests/suites/ |
D | test_suite_psa_crypto_low_hash.function | 3 * Test suite for the PSA hash built-in driver 5 * This test suite exercises some aspects of the built-in PSA driver for 8 * individual hash modules. The goal of this test suite is to ensure that 12 * This test suite is currently incomplete. It focuses on non-regression
|
D | test_suite_platform.function | 5 * this suite only performs very basic sanity checks of the timing API. 73 * Windows CI reports random test fail on platform-suite. It might
|
D | test_suite_bignum_random.function | 2 /* Dedicated test suite for mbedtls_mpi_core_random() and the upper-layer 4 * we test all the layers in a single test suite, unlike the way other 5 * functions are tested with each layer in its own test suite. 46 /* This test suite only manipulates non-negative bignums. */
|
D | main_test.function | 15 * Test suite file : __MBEDTLS_TEST_TEMPLATE__TEST_CASE_FILE 16 * Test suite data : __MBEDTLS_TEST_TEMPLATE__TEST_CASE_DATA_FILE
|
D | test_suite_timing.function | 5 * this suite only performs very basic sanity checks of the timing API.
|
D | helpers.function | 46 #define DISPATCH_UNSUPPORTED_SUITE -5 /* Test suite not supported by the
|
D | host_test.function | 322 * \param argv0 The test suite name. 424 mbedtls_fprintf(outcome_file, "SKIP;Unsupported suite");
|
D | test_suite_pkparse.function | 86 * test suite does not create opaque keys. */
|
D | test_suite_psa_crypto_op_fail.function | 24 * This test suite currently allows NOT_SUPPORTED and INVALID_ARGUMENT
|
D | test_suite_psa_crypto_pake.data | 236 PSA PAKE: input getters: cipher suite
|
D | test_suite_psa_crypto_metadata.function | 3 * This test suite only contains tests that don't require executing
|
/mbedtls-latest/scripts/ |
D | footprint.sh | 105 doit suite-b configs/config-suite-b.h
|
/mbedtls-latest/docs/architecture/testing/ |
D | test-framework.md | 37 ### SSL cipher suite tests 61 * **Test suite**: `test_suite_xxx`, `ssl-opt` or `compat`.
|
D | driver-interface-test-strategy.md | 102 * Run the full driver validation test suite (which does not yet exist). 113 * Run the full driver validation test suite (which does not yet exist).
|
/mbedtls-latest/tests/ |
D | Descriptions.txt | 10 test suite, but some slower ones are only included here.
|
D | CMakeLists.txt | 310 message(STATUS "The test suite ${data_name} will not be executed.") 312 add_test(${data_name}-suite test_suite_${data_name} --verbose)
|
/mbedtls-latest/library/ |
D | ssl_tls12_server.c | 1739 const mbedtls_ssl_ciphersuite_t *suite = NULL; in ssl_write_encrypt_then_mac_ext() local 1747 suite = mbedtls_ssl_ciphersuite_from_id( in ssl_write_encrypt_then_mac_ext() 1749 if (suite == NULL) { in ssl_write_encrypt_then_mac_ext() 1755 suite); in ssl_write_encrypt_then_mac_ext() 2349 const mbedtls_ssl_ciphersuite_t *suite = in ssl_write_server_hello() local 2351 if (suite != NULL && mbedtls_ssl_ciphersuite_uses_ec(suite)) { in ssl_write_server_hello()
|
D | ssl_misc.h | 2775 const mbedtls_ssl_ciphersuite_t *suite); 2778 const mbedtls_ssl_ciphersuite_t *suite);
|
/mbedtls-latest/ |
D | CMakeLists.txt | 315 # built into a library that the test suite and program objects would link
|
D | ChangeLog | 784 ssl_ciphersuites.c). The preferred cipher suite is now 946 * In the TLS 1.3 server, select the preferred client cipher suite, not the 950 session where the cipher suite is TLS_AES_256_GCM_SHA384. 1921 test cases provided in the NIST's CAVP test suite. Contributed by Cédric 2007 * The cipher suite TLS-RSA-WITH-CAMELLIA-256-GCM-SHA384 was not available 2011 * Fix test suite code on platforms where int32_t is not int, such as 2031 * Fix a resource leak in a test suite with an alternative AES 2928 * Replace multiple uses of MD2 by SHA-256 in X.509 test suite. Fixes #821. 3003 * Fix bugs in the AEAD test suite which would be exposed by ciphers which 3931 * Fix bugs in RSA test suite under MBEDTLS_NO_PLATFORM_ENTROPY. #1023 #1024 [all …]
|
D | README.md | 243 Mbed TLS includes an elaborate test suite in `tests/` that initially requires Python to generate th…
|
/mbedtls-latest/docs/proposed/ |
D | psa-conditional-inclusion-c.md | 75 …s, for example additional key parsing and formatting functions, or cipher suite availability for n…
|
12