Home
last modified time | relevance | path

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

/mbedtls/library/
A Dsha3.c294 ctx->index = 0; in mbedtls_sha3_starts()
308 int align_bytes = 8 - (ctx->index % 8); 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()
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()
359 ctx->index = 0; in mbedtls_sha3_finish()
362 *output++ = SQUEEZE(ctx, ctx->index); in mbedtls_sha3_finish()
[all …]
A 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()
A Dbignum_core.h524 size_t index);
A 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/tests/scripts/
A 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]
A Dgenerate_psa_wrappers.py39 self.index = i
162 function.arguments[param.index].name))
A Dgenerate_test_code.py893 dep_id = unique_dependencies.index(dep)
896 dep_id = unique_dependencies.index(dep)
937 exp_id = unique_expressions.index(val)
941 val = unique_expressions.index(val)
A Dall.sh564 git checkout-index -f -q $CONFIG_H
592 …git update-index --no-skip-worktree Makefile library/Makefile programs/Makefile tests/Makefile pro…
/mbedtls/scripts/
A 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
A Dlcov.sh20 4. Browse the coverage report in Coverage/index.html.
/mbedtls/
A D.gitignore68 # clangd index files
69 /.cache/clangd/index/
A DREADME.md28 1. Browse `apidoc/index.html` or `apidoc/modules.html`.
A DChangeLog3856 * Avoid shadowing of time and index functions through mbed TLS function
/mbedtls/tests/suites/
A 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.
A 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)
A Dtest_suite_psa_crypto.function5584 size_t index = 0;
5631 for (index = 0; index < nonce_length - 1; ++index) {
5632 nonce_buffer[index] = 'a' + index;
A Dtest_suite_bignum_core.function1025 * detected. (And have their relationship to the index relatively non-trivial just
/mbedtls/docs/
A Dindex.rst9 .. doxygenpage:: index
/mbedtls/include/mbedtls/
A Dsha3.h52 uint32_t MBEDTLS_PRIVATE(index);
/mbedtls/scripts/data_files/driver_templates/
A Dpsa_crypto_driver_wrappers_no_static.c.jinja48 #define {{(driver.prefix + "_" + driver.type + "_driver_id").upper()}} ({{ loop.index + 1 }})
A Dpsa_crypto_driver_wrappers.h.jinja49 #define {{(driver.prefix + "_" + driver.type + "_driver_id").upper()}} ({{ loop.index + 1 }})
/mbedtls/docs/architecture/
A 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.

Completed in 51 milliseconds