Home
last modified time | relevance | path

Searched refs:fill (Results 1 – 20 of 20) sorted by relevance

/mbedtls-latest/library/
Dmd5.c208 size_t fill; in mbedtls_md5_update() local
216 fill = 64 - left; in mbedtls_md5_update()
225 if (left && ilen >= fill) { in mbedtls_md5_update()
226 memcpy((void *) (ctx->buffer + left), input, fill); in mbedtls_md5_update()
231 input += fill; in mbedtls_md5_update()
232 ilen -= fill; in mbedtls_md5_update()
Dripemd160.c271 size_t fill; in mbedtls_ripemd160_update() local
279 fill = 64 - left; in mbedtls_ripemd160_update()
288 if (left && ilen >= fill) { in mbedtls_ripemd160_update()
289 memcpy((void *) (ctx->buffer + left), input, fill); in mbedtls_ripemd160_update()
295 input += fill; in mbedtls_ripemd160_update()
296 ilen -= fill; in mbedtls_ripemd160_update()
Dsha1.c243 size_t fill; in mbedtls_sha1_update() local
251 fill = 64 - left; in mbedtls_sha1_update()
260 if (left && ilen >= fill) { in mbedtls_sha1_update()
261 memcpy((void *) (ctx->buffer + left), input, fill); in mbedtls_sha1_update()
267 input += fill; in mbedtls_sha1_update()
268 ilen -= fill; in mbedtls_sha1_update()
Dsha256.c650 size_t fill; in mbedtls_sha256_update() local
658 fill = SHA256_BLOCK_SIZE - left; in mbedtls_sha256_update()
667 if (left && ilen >= fill) { in mbedtls_sha256_update()
668 memcpy((void *) (ctx->buffer + left), input, fill); in mbedtls_sha256_update()
674 input += fill; in mbedtls_sha256_update()
675 ilen -= fill; in mbedtls_sha256_update()
Dsha512.c765 size_t fill; in mbedtls_sha512_update() local
773 fill = SHA512_BLOCK_SIZE - left; in mbedtls_sha512_update()
781 if (left && ilen >= fill) { in mbedtls_sha512_update()
782 memcpy((void *) (ctx->buffer + left), input, fill); in mbedtls_sha512_update()
788 input += fill; in mbedtls_sha512_update()
789 ilen -= fill; in mbedtls_sha512_update()
/mbedtls-latest/tests/scripts/
Dcheck_names.py143 return self.textwrapper.fill(
170 return self.textwrapper.fill(
200 return self.textwrapper.fill(
/mbedtls-latest/.github/ISSUE_TEMPLATE/
Dfeature_request.md3 about: To request an enhancement, please fill this form.
Dbug_report.md3 about: To report a bug, please fill this form.
/mbedtls-latest/tests/suites/
Dtest_suite_psa_crypto_entropy.function167 /* fill seed with some data */
211 /* fill seed with some data */
Dtest_suite_psa_crypto_memory.function14 /* Helper to fill a buffer with a data pattern. The pattern is not
Dtest_suite_entropy.function93 * NV seed read/write helpers that fill the base seedfile
Dtest_suite_bignum_core.function322 // trailing zeros is given in the test case, and we add ones to fill
Dtest_suite_pk.function249 * \param pk The PK object to fill. It must have been initialized
/mbedtls-latest/docs/architecture/
Dpsa-keystore-design.md157 …, the length of key slices can be overridden. We use this in tests that need to fill the key store.
Dpsa-storage-resilience.md406 …ifier from the array. If it wasn't the last element in array, move array elements to fill the hole.
Dpsa-shared-memory.md326 …ginal and copy it back once the PSA function returns. For output buffers, fill them with random da…
/mbedtls-latest/docs/architecture/psa-thread-safety/
Dpsa-thread-safety.md164 * `PSA_SLOT_FILLING`: one thread is currently loading or creating material to fill the slot, this t…
/mbedtls-latest/docs/
Dpsa-transition.md812 …/development/api/file/pk_8h/#pk_8h_1a7aa7b33cffb6981d95d1632631de9244) to fill PSA attributes corr…
850 // Omitted: fill ec with key material
872 // Omitted: fill pt with key material
/mbedtls-latest/docs/proposed/
Dpsa-driver-interface.md1251 …MALL`, it must fill `attributes` with the attributes of the key (except for the key identifier). O…
/mbedtls-latest/
DChangeLog2368 * In PEM writing functions, fill the trailing part of the buffer with null