/mbedtls-development/tests/scripts/ |
A D | check-python-files.sh | 36 actual = package.__version__ 38 if packaging.version.parse(actual) < packaging.version.parse(wanted): 39 sys.stderr.write("$1: version %s is too old (want %s)\n" % (actual, wanted))
|
/mbedtls-development/tests/suites/ |
A D | test_suite_dhm.function | 8 mbedtls_mpi actual; 10 mbedtls_mpi_init( &actual ); 12 TEST_ASSERT( mbedtls_dhm_get_value( ctx, param, &actual ) == 0 ); 13 TEST_ASSERT( mbedtls_mpi_cmp_mpi( &actual, expected ) == 0 ); 17 mbedtls_mpi_free( &actual ); 30 mbedtls_mpi actual; 32 mbedtls_mpi_init( &actual ); 43 TEST_EQUAL( 0, mbedtls_mpi_read_binary( &actual, buffer + *offset, n ) ); 44 TEST_EQUAL( 0, mbedtls_mpi_cmp_mpi( expected, &actual ) ); 49 mbedtls_mpi_free( &actual );
|
A D | test_suite_base64.function | 69 signed char actual = mbedtls_base64_dec_value( c ); 71 TEST_CF_PUBLIC( &actual, sizeof( actual ) ); 72 TEST_EQUAL( actual, expected );
|
A D | test_suite_ecp.function | 942 uint8_t *actual = NULL; 950 ASSERT_ALLOC( actual, expected->len ); 964 TEST_EQUAL( 0, mbedtls_mpi_write_binary( &d, actual, expected->len ) ); 976 actual, expected->len ); 980 mbedtls_free( actual );
|
A D | test_suite_entropy.function | 498 // Second run for actual entropy (triggers mbedtls_entropy_update_nv_seed)
|
A D | test_suite_asn1parse.function | 445 * expected value, but they matter for the actual value.)
|
A D | test_suite_psa_crypto.data | 1749 PSA MAC sign: HMAC-SHA-224, truncated to 28 bytes (actual size) 1753 PSA MAC verify: HMAC-SHA-224, truncated to 28 bytes (actual size) 1757 PSA MAC sign: HMAC-SHA-512, truncated to 64 bytes (actual size) 1761 PSA MAC verify: HMAC-SHA-512, truncated to 64 bytes (actual size) 1821 PSA MAC sign: CMAC-AES-128, truncated to 16 bytes (actual size) 1825 PSA MAC verify: CMAC-AES-128, truncated to 16 bytes (actual size)
|
A D | test_suite_ssl.function | 2168 /* Calculate actual input and output lengths */
|
A D | test_suite_psa_crypto.function | 6565 /* Test the actual capacity by reading the output. */
|
/mbedtls-development/programs/psa/ |
A D | crypto_examples.c | 34 #define ASSERT_STATUS( actual, expected ) \ argument 37 if( ( actual ) != ( expected ) ) \ 41 (psa_status_t) actual, (psa_status_t) expected ); \
|
/mbedtls-development/docs/architecture/ |
A D | psa-crypto-implementation-structure.md | 71 … compliant with the PSA driver interface specification. But it is not an actual driver that drives…
|
/mbedtls-development/docs/architecture/testing/ |
A D | invasive-testing.md | 86 * Correctness: we want to test the actual product, not a modified version, since conclusions drawn … 178 …may accidentally use these internal interfaces in ways that don't correspond to the actual product. 186 | | ~ The tests may call internal functions in a way that does not reflect actual usage…
|
A D | psa-storage-format-testing.md | 23 …est case creates a key as indicated by the parameters, then compares the actual state of the stora…
|
A D | driver-interface-test-strategy.md | 101 * Running on actual hardware.
|
/mbedtls-development/library/ |
A D | psa_crypto.c | 1836 mbedtls_mpi actual, required; in psa_validate_optional_attributes() local 1847 mbedtls_mpi_init( &actual ); in psa_validate_optional_attributes() 1850 NULL, NULL, NULL, NULL, &actual ); in psa_validate_optional_attributes() 1860 if( mbedtls_mpi_cmp_mpi( &actual, &required ) != 0 ) in psa_validate_optional_attributes() 1863 mbedtls_mpi_free( &actual ); in psa_validate_optional_attributes()
|
/mbedtls-development/ |
A D | CONTRIBUTING.md | 64 … in the `tests/` directory that are dynamically generated to produce the actual test source files …
|
A D | ChangeLog | 773 mbedtls_x509_crt_verify()) with the actual certificate name: when the 916 The actual effect with almost every compiler is the intended 3344 * Stricter check on SSL ClientHello internal sizes compared to actual packet 3393 * Only iterate over actual certificates in ssl_write_certificate_request() 3837 * Stricter check on SSL ClientHello internal sizes compared to actual packet 4277 displays actual bit size of the value.
|
/mbedtls-development/docs/ |
A D | 3.0-migration-guide.md | 218 * `mbedtls_gcm_update()` now takes an extra parameter to indicate the actual output length. In Mbed… 228 …allows arbitrary-length inputs, takes an extra parameter to indicate the actual output length. Alt…
|
/mbedtls-development/docs/proposed/ |
A D | psa-driver-interface.md | 204 …fer size. A third parameter of type `size_t *` is provided to report the actual length of the data… 816 …sistence level, in case the driver has more specific knowledge about the actual persistence level …
|
/mbedtls-development/doxygen/ |
A D | mbedtls.doxyfile | 960 # the output darker. The value divided by 100 is the actual gamma applied,
|