/mbedtls-3.6.0/library/ |
D | sha1.c | 70 } local; in mbedtls_internal_sha1_process() local 72 local.W[0] = MBEDTLS_GET_UINT32_BE(data, 0); in mbedtls_internal_sha1_process() 73 local.W[1] = MBEDTLS_GET_UINT32_BE(data, 4); in mbedtls_internal_sha1_process() 74 local.W[2] = MBEDTLS_GET_UINT32_BE(data, 8); in mbedtls_internal_sha1_process() 75 local.W[3] = MBEDTLS_GET_UINT32_BE(data, 12); in mbedtls_internal_sha1_process() 76 local.W[4] = MBEDTLS_GET_UINT32_BE(data, 16); in mbedtls_internal_sha1_process() 77 local.W[5] = MBEDTLS_GET_UINT32_BE(data, 20); in mbedtls_internal_sha1_process() 78 local.W[6] = MBEDTLS_GET_UINT32_BE(data, 24); in mbedtls_internal_sha1_process() 79 local.W[7] = MBEDTLS_GET_UINT32_BE(data, 28); in mbedtls_internal_sha1_process() 80 local.W[8] = MBEDTLS_GET_UINT32_BE(data, 32); in mbedtls_internal_sha1_process() [all …]
|
D | ripemd160.c | 74 } local; in mbedtls_internal_ripemd160_process() local 76 local.X[0] = MBEDTLS_GET_UINT32_LE(data, 0); in mbedtls_internal_ripemd160_process() 77 local.X[1] = MBEDTLS_GET_UINT32_LE(data, 4); in mbedtls_internal_ripemd160_process() 78 local.X[2] = MBEDTLS_GET_UINT32_LE(data, 8); in mbedtls_internal_ripemd160_process() 79 local.X[3] = MBEDTLS_GET_UINT32_LE(data, 12); in mbedtls_internal_ripemd160_process() 80 local.X[4] = MBEDTLS_GET_UINT32_LE(data, 16); in mbedtls_internal_ripemd160_process() 81 local.X[5] = MBEDTLS_GET_UINT32_LE(data, 20); in mbedtls_internal_ripemd160_process() 82 local.X[6] = MBEDTLS_GET_UINT32_LE(data, 24); in mbedtls_internal_ripemd160_process() 83 local.X[7] = MBEDTLS_GET_UINT32_LE(data, 28); in mbedtls_internal_ripemd160_process() 84 local.X[8] = MBEDTLS_GET_UINT32_LE(data, 32); in mbedtls_internal_ripemd160_process() [all …]
|
D | md5.c | 69 } local; in mbedtls_internal_md5_process() local 71 local.X[0] = MBEDTLS_GET_UINT32_LE(data, 0); in mbedtls_internal_md5_process() 72 local.X[1] = MBEDTLS_GET_UINT32_LE(data, 4); in mbedtls_internal_md5_process() 73 local.X[2] = MBEDTLS_GET_UINT32_LE(data, 8); in mbedtls_internal_md5_process() 74 local.X[3] = MBEDTLS_GET_UINT32_LE(data, 12); in mbedtls_internal_md5_process() 75 local.X[4] = MBEDTLS_GET_UINT32_LE(data, 16); in mbedtls_internal_md5_process() 76 local.X[5] = MBEDTLS_GET_UINT32_LE(data, 20); in mbedtls_internal_md5_process() 77 local.X[6] = MBEDTLS_GET_UINT32_LE(data, 24); in mbedtls_internal_md5_process() 78 local.X[7] = MBEDTLS_GET_UINT32_LE(data, 28); in mbedtls_internal_md5_process() 79 local.X[8] = MBEDTLS_GET_UINT32_LE(data, 32); in mbedtls_internal_md5_process() [all …]
|
D | sha256.c | 439 local.W[t] = S1(local.W[(t) - 2]) + local.W[(t) - 7] + \ 440 S0(local.W[(t) - 15]) + local.W[(t) - 16] \ 446 local.temp1 = (h) + S3(e) + F1((e), (f), (g)) + (K) + (x); \ 447 local.temp2 = S2(a) + F0((a), (b), (c)); \ 448 (d) += local.temp1; (h) = local.temp1 + local.temp2; \ 464 } local; in mbedtls_internal_sha256_process_c() local 469 local.A[i] = ctx->state[i]; in mbedtls_internal_sha256_process_c() 475 local.W[i] = MBEDTLS_GET_UINT32_BE(data, 4 * i); in mbedtls_internal_sha256_process_c() 480 P(local.A[0], local.A[1], local.A[2], local.A[3], local.A[4], in mbedtls_internal_sha256_process_c() 481 local.A[5], local.A[6], local.A[7], local.W[i], K[i]); in mbedtls_internal_sha256_process_c() [all …]
|
D | sha512.c | 607 } local; in mbedtls_internal_sha512_process_c() local 624 local.temp1 = (h) + S3(e) + F1((e), (f), (g)) + (K) + (x); \ in mbedtls_internal_sha512_process_c() 625 local.temp2 = S2(a) + F0((a), (b), (c)); \ in mbedtls_internal_sha512_process_c() 626 (d) += local.temp1; (h) = local.temp1 + local.temp2; \ in mbedtls_internal_sha512_process_c() 630 local.A[i] = ctx->state[i]; in mbedtls_internal_sha512_process_c() 636 local.W[i] = MBEDTLS_GET_UINT64_BE(data, i << 3); in mbedtls_internal_sha512_process_c() 638 local.W[i] = S1(local.W[i - 2]) + local.W[i - 7] + in mbedtls_internal_sha512_process_c() 639 S0(local.W[i - 15]) + local.W[i - 16]; in mbedtls_internal_sha512_process_c() 642 P(local.A[0], local.A[1], local.A[2], local.A[3], local.A[4], in mbedtls_internal_sha512_process_c() 643 local.A[5], local.A[6], local.A[7], local.W[i], K[i]); in mbedtls_internal_sha512_process_c() [all …]
|
/mbedtls-3.6.0/tests/docker/bionic/ |
D | Dockerfile | 65 && ./config --openssldir=/usr/local/openssl-1.0.1j no-shared \ 69 ENV OPENSSL_LEGACY=/usr/local/openssl-1.0.1j/bin/openssl 75 && ./config --openssldir=/usr/local/openssl-1.0.2g no-shared \ 79 ENV OPENSSL=/usr/local/openssl-1.0.2g/bin/openssl 86 …&& ./config --prefix=/usr/local/openssl-1.1.1a -Wl,--enable-new-dtags,-rpath,'${LIBRPATH}' no-shar… 90 ENV OPENSSL_NEXT=/usr/local/openssl-1.1.1a/bin/openssl 106 …&& ./configure --prefix=/usr/local/gnutls-3.3.8 --exec_prefix=/usr/local/gnutls-3.3.8 --disable-sh… 110 ENV GNUTLS_LEGACY_CLI=/usr/local/gnutls-3.3.8/bin/gnutls-cli 111 ENV GNUTLS_LEGACY_SERV=/usr/local/gnutls-3.3.8/bin/gnutls-serv 127 && ./configure --prefix=/usr/local/gnutls-3.4.10 --exec_prefix=/usr/local/gnutls-3.4.10 \ [all …]
|
/mbedtls-3.6.0/tests/scripts/ |
D | test_generate_test_code.py | 473 args, local, arg_dispatch = parse_function_arguments(line) 475 self.assertEqual(local, '') 487 args, local, arg_dispatch = parse_function_arguments(line) 489 self.assertEqual(local, 510 args, local, arg_dispatch = parse_function_arguments(line) 512 self.assertEqual(local, '') 521 args, local, arg_dispatch = parse_function_arguments(line) 523 self.assertEqual(local, '') 532 args, local, arg_dispatch = parse_function_arguments(line) 534 self.assertEqual(local, '') [all …]
|
/mbedtls-3.6.0/tests/suites/ |
D | test_suite_psa_crypto_attributes.data | 14 PSA key attributes: id then back to non local volatile 23 PSA key attributes: non local volatile lifetime then id
|
D | test_suite_psa_crypto_metadata.data | 436 Lifetime: volatile, local storage 439 Lifetime: default, local storage 442 Lifetime: 2, local storage 445 Lifetime: 254, local storage 448 Lifetime: read-only, local storage
|
D | test_suite_psa_crypto_se_driver_hal.data | 12 Register SE driver: invalid location (local)
|
D | test_suite_ssl.function | 122 /* Check the sanity of input parameters and initialise local variables. That
|
/mbedtls-3.6.0/ |
D | SECURITY.md | 82 Mbed TLS doesn't make any security guarantees against local non-timing-based 83 side channel attacks. If local non-timing attacks are present in a use case or 91 Mbed TLS doesn't make any security guarantees against local fault injection 92 attacks. If local fault injection attacks are present in a use case or a user 124 These timing attacks can be physical, local or depending on network latency
|
D | .pylintrc | 32 # We're ok with short local or global variable names.
|
D | ChangeLog | 7 could be sufficient for an attacker to recover the plaintext. A local 521 affects contributors and maintainers of local patches. For more 1095 * Stop using reserved identifiers as local variables. Fixes #4630. 1732 * Guard against strong local side channel attack against base64 tables by 1854 * Zeroising of local buffers and variables which are used for calculations 1973 its revocationDate was in the past according to the local clock if 1976 MBEDTLS_HAVE_TIME_DATE, an attacker able to control the local clock (for 1986 effective against network-based attackers, but less so against local 1987 attackers. The new countermeasure defends against local attackers, even 1989 fixes a local Lucky 13 cache attack found and reported by Tuba Yavuz, [all …]
|
D | README.md | 24 To generate a local copy of the library documentation in HTML format, tailored to your compile-time…
|
/mbedtls-3.6.0/tests/data_files/ |
D | Readme-x509.txt | 49 - L -> CN=localhost (useful for local test servers)
|
/mbedtls-3.6.0/docs/architecture/ |
D | psa-storage-resilience.md | 144 …* Aborting means destroying the key in the secure element and removing any local storage used for … 146 …ne if the transaction had not been interrupted, by removing any remaining local storage used for t… 149 …ne if the transaction had not been interrupted, by removing any remaining local storage used for t… 150 …ires no action on the secure element, and is only practical locally if the local storage is intact. 431 …tifier. A possible optimization would be to load only that information in local variables, without…
|
D | psa-thread-safety.md | 240 * Accessors for key attributes and other local structures.
|
D | tls13-support.md | 293 happening again, use always a local variable named `p` for the reading
|
/mbedtls-3.6.0/docs/ |
D | psa-driver-example-and-guide.md | 87 …` statement which checks the location of the key. If the key is stored in local storage, then oper…
|
/mbedtls-3.6.0/3rdparty/p256-m/p256-m/ |
D | README.md | 290 than TinyCrypt against powerful local attackers (such as an untrusted OS
|
/mbedtls-3.6.0/docs/architecture/psa-migration/ |
D | md-cipher-dispatch.md | 142 …lementation of an encrypted communication with the crypto service, or the local implementation is …
|
/mbedtls-3.6.0/docs/proposed/ |
D | psa-driver-interface.md | 598 1. If the location of the `password` is the local storage 1418 …er needs to remember which driver it's calling. This may require a thread-local variable in a mult…
|