| /optee_os/lib/libmbedtls/mbedtls/library/ |
| H A 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 …]
|
| H A 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 …]
|
| H A 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 …]
|
| H A D | sha256.c | 473 local.W[t] = S1(local.W[(t) - 2]) + local.W[(t) - 7] + \ 474 S0(local.W[(t) - 15]) + local.W[(t) - 16] \ 480 local.temp1 = (h) + S3(e) + F1((e), (f), (g)) + (K) + (x); \ 481 local.temp2 = S2(a) + F0((a), (b), (c)); \ 482 (d) += local.temp1; (h) = local.temp1 + local.temp2; \ 498 } local; in mbedtls_internal_sha256_process_c() local 503 local.A[i] = ctx->state[i]; in mbedtls_internal_sha256_process_c() 509 local.W[i] = MBEDTLS_GET_UINT32_BE(data, 4 * i); in mbedtls_internal_sha256_process_c() 514 P(local.A[0], local.A[1], local.A[2], local.A[3], local.A[4], in mbedtls_internal_sha256_process_c() 515 local.A[5], local.A[6], local.A[7], local.W[i], K[i]); in mbedtls_internal_sha256_process_c() [all …]
|
| H A D | sha512.c | 608 } local; in mbedtls_internal_sha512_process_c() local 625 local.temp1 = (h) + S3(e) + F1((e), (f), (g)) + (K) + (x); \ in mbedtls_internal_sha512_process_c() 626 local.temp2 = S2(a) + F0((a), (b), (c)); \ in mbedtls_internal_sha512_process_c() 627 (d) += local.temp1; (h) = local.temp1 + local.temp2; \ in mbedtls_internal_sha512_process_c() 631 local.A[i] = ctx->state[i]; in mbedtls_internal_sha512_process_c() 637 local.W[i] = MBEDTLS_GET_UINT64_BE(data, i << 3); in mbedtls_internal_sha512_process_c() 639 local.W[i] = S1(local.W[i - 2]) + local.W[i - 7] + in mbedtls_internal_sha512_process_c() 640 S0(local.W[i - 15]) + local.W[i - 16]; in mbedtls_internal_sha512_process_c() 643 P(local.A[0], local.A[1], local.A[2], local.A[3], local.A[4], in mbedtls_internal_sha512_process_c() 644 local.A[5], local.A[6], local.A[7], local.W[i], K[i]); in mbedtls_internal_sha512_process_c() [all …]
|
| /optee_os/core/lib/zlib/ |
| H A D | gzguts.h | 114 #ifndef local 115 # define local static macro
|
| H A D | adler32.c | 11 local uLong adler32_combine_ OF((uLong adler1, uLong adler2, z_off64_t len2)); 144 local uLong adler32_combine_(adler1, adler2, len2) in adler32_combine_()
|
| H A D | zutil.c | 203 local int next_ptr = 0; 210 local ptr_table table[MAX_PTR];
|
| H A D | zutil.h | 33 #ifndef local 34 # define local static macro
|
| H A D | inflate.c | 96 local int inflateStateCheck OF((z_streamp strm)); 97 local void fixedtables OF((struct inflate_state FAR *state)); 98 local int updatewindow OF((z_streamp strm, const unsigned char FAR *end, 103 local unsigned syncsearch OF((unsigned FAR *have, const unsigned char FAR *buf, 106 local int inflateStateCheck(strm) in inflateStateCheck() 280 local void fixedtables(state) in fixedtables() 398 local int updatewindow(strm, end, copy) in updatewindow() 1402 local unsigned syncsearch(have, buf, len) in syncsearch()
|
| /optee_os/lib/libmbedtls/mbedtls/ |
| H A 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
|
| H A D | ChangeLog | 218 !MBEDTLS_PSA_CRYPTO_C), do not automatically enable local crypto when the 655 could be sufficient for an attacker to recover the plaintext. A local 1169 affects contributors and maintainers of local patches. For more 1743 * Stop using reserved identifiers as local variables. Fixes #4630. 2380 * Guard against strong local side channel attack against base64 tables by 2502 * Zeroising of local buffers and variables which are used for calculations 2621 its revocationDate was in the past according to the local clock if 2624 MBEDTLS_HAVE_TIME_DATE, an attacker able to control the local clock (for 2634 effective against network-based attackers, but less so against local 2635 attackers. The new countermeasure defends against local attackers, even [all …]
|
| H A D | README.md | 24 To generate a local copy of the library documentation in HTML format, tailored to your compile-time…
|
| /optee_os/ta/pkcs11/src/ |
| H A D | pkcs11_attributes.c | 1188 uint8_t local = 0; in create_attributes_from_template() local 1410 local = PKCS11_TRUE; in create_attributes_from_template() 1416 local = PKCS11_FALSE; in create_attributes_from_template() 1419 rc = add_attribute(&attrs, PKCS11_CKA_LOCAL, &local, sizeof(local)); in create_attributes_from_template() 1482 if (local) in create_attributes_from_template()
|
| /optee_os/ |
| H A D | CHANGELOG.md | 1552 * AOSP: There is a [local manifest][aosp_local_manifest] to build OP-TEE into an AOSP build, runnin…
|