Home
last modified time | relevance | path

Searched refs:index (Results 1 – 21 of 21) sorted by relevance

/mbedtls-latest/library/
Dsha3.c294 ctx->index = 0; in mbedtls_sha3_starts()
308 int align_bytes = 8 - (ctx->index % 8); in mbedtls_sha3_update()
311 ABSORB(ctx, ctx->index, *input++); in mbedtls_sha3_update()
313 ctx->index++; in mbedtls_sha3_update()
315 if ((ctx->index = ctx->index % ctx->max_block_size) == 0) { in mbedtls_sha3_update()
322 ABSORB(ctx, ctx->index, MBEDTLS_GET_UINT64_LE(input, 0)); in mbedtls_sha3_update()
325 if ((ctx->index = (ctx->index + 8) % ctx->max_block_size) == 0) { in mbedtls_sha3_update()
333 ABSORB(ctx, ctx->index, *input++); in mbedtls_sha3_update()
334 if ((ctx->index = (ctx->index + 1) % ctx->max_block_size) == 0) { in mbedtls_sha3_update()
356 ABSORB(ctx, ctx->index, XOR_BYTE); in mbedtls_sha3_finish()
[all …]
Dssl_ticket.c65 unsigned char index) in ssl_ticket_gen_key() argument
69 mbedtls_ssl_ticket_key *key = ctx->keys + index; in ssl_ticket_gen_key()
Dbignum_core.h545 size_t index);
Dbignum_core.c601 size_t index) in mbedtls_mpi_core_ct_uint_table_lookup() argument
604 mbedtls_ct_condition_t assign = mbedtls_ct_uint_eq(i, index); in mbedtls_mpi_core_ct_uint_table_lookup()
/mbedtls-latest/tests/scripts/
Dtranslate_ciphers.py106 index = s_cipher.rindex("-")
107 s_cipher = s_cipher[:index] + ":+" + s_cipher[index+1:]
145 index = s_cipher.rindex("POLY1305")
146 s_cipher = s_cipher[:index+8]
Dall.sh577 git checkout-index -f -q $CONFIG_H
605 …git update-index --no-skip-worktree Makefile library/Makefile programs/Makefile tests/Makefile pro…
/mbedtls-latest/docs/architecture/
Dpsa-keystore-design.md85 …on. A key slice is an array of key slots. Key slices are identified by an index which is a small n…
87 …tic key store](#static-key-store), there is a single, statically allocated slice, with the index 0.
88 … is statically allocated array of pointers to key slices. The index of a slice is the index in tha…
92 …ng the slot and index of the slot in its slice determine the key identifier. When accessing a vola…
102 For easy lookup, a volatile key whose index is `id` is stored at the index `id - PSA_KEY_ID_VOLATIL…
137 A volatile key identifier encodes the slice index and the slot index at separate bit positions. Tha…
143 * for a volatile key identifier, the [slice index is encoded in the key identifier](#volatile-key-i…
146 Nonetheless, we store the slice index as a field in the slot, for two reasons:
149 …a_free_key_slot()`, which needs to determine the slice. Keeping the slice index as a separate fiel…
155 …t index to 2^25-1 so that the [encoding of volatile key identifiers](#volatile-key-identifiers-in-…
[all …]
Dpsa-shared-memory.md104 * Never read the same input twice at the same index.
106 * Never write to the output twice at the same index.
/mbedtls-latest/scripts/
Dtmp_ignore_makefiles.sh43 git update-index --assume-unchanged Makefile library/Makefile programs/Makefile tests/Makefile
46 git update-index --no-assume-unchanged Makefile library/Makefile programs/Makefile tests/Makefile
Dlcov.sh20 4. Browse the coverage report in Coverage/index.html.
/mbedtls-latest/
D.gitignore71 # clangd index files
72 /.cache/clangd/index/
DREADME.md28 1. Browse `apidoc/index.html` or `apidoc/modules.html`.
DChangeLog4051 * Avoid shadowing of time and index functions through mbed TLS function
/mbedtls-latest/tests/suites/
Dmain_test.function148 * \brief Dispatches test functions based on function index.
150 * \param func_idx Test function index.
190 * \param func_idx Test function index.
Dtest_suite_bignum.misc.data1724 Test bit set (Bit index larger than 31 with a 0)
1727 Test bit set (Bit index larger than 31 with a 1)
Dtest_suite_psa_crypto.function5564 size_t index = 0;
5611 for (index = 0; index < nonce_length - 1; ++index) {
5612 nonce_buffer[index] = 'a' + index;
Dtest_suite_bignum_core.function1025 * detected. (And have their relationship to the index relatively non-trivial just
/mbedtls-latest/docs/
Dindex.rst9 .. doxygenpage:: index
/mbedtls-latest/include/mbedtls/
Dsha3.h52 uint32_t MBEDTLS_PRIVATE(index);
/mbedtls-latest/scripts/data_files/driver_templates/
Dpsa_crypto_driver_wrappers_no_static.c.jinja48 #define {{(driver.prefix + "_" + driver.type + "_driver_id").upper()}} ({{ loop.index + 1 }})
Dpsa_crypto_driver_wrappers.h.jinja49 #define {{(driver.prefix + "_" + driver.type + "_driver_id").upper()}} ({{ loop.index + 1 }})