Home
last modified time | relevance | path

Searched refs:left (Results 1 – 13 of 13) sorted by relevance

/mbedtls-development/library/
A Dsha512.c305 unsigned int left; in mbedtls_sha512_update() local
313 left = (unsigned int) (ctx->total[0] & 0x7F); in mbedtls_sha512_update()
314 fill = 128 - left; in mbedtls_sha512_update()
321 if( left && ilen >= fill ) in mbedtls_sha512_update()
323 memcpy( (void *) (ctx->buffer + left), input, fill ); in mbedtls_sha512_update()
330 left = 0; in mbedtls_sha512_update()
343 memcpy( (void *) (ctx->buffer + left), input, ilen ); in mbedtls_sha512_update()
A Dmd5.c228 uint32_t left; in mbedtls_md5_update() local
233 left = ctx->total[0] & 0x3F; in mbedtls_md5_update()
234 fill = 64 - left; in mbedtls_md5_update()
242 if( left && ilen >= fill ) in mbedtls_md5_update()
244 memcpy( (void *) (ctx->buffer + left), input, fill ); in mbedtls_md5_update()
250 left = 0; in mbedtls_md5_update()
264 memcpy( (void *) (ctx->buffer + left), input, ilen ); in mbedtls_md5_update()
A Dsha256.c271 uint32_t left; in mbedtls_sha256_update() local
279 left = ctx->total[0] & 0x3F; in mbedtls_sha256_update()
280 fill = 64 - left; in mbedtls_sha256_update()
288 if( left && ilen >= fill ) in mbedtls_sha256_update()
290 memcpy( (void *) (ctx->buffer + left), input, fill ); in mbedtls_sha256_update()
297 left = 0; in mbedtls_sha256_update()
310 memcpy( (void *) (ctx->buffer + left), input, ilen ); in mbedtls_sha256_update()
A Dhmac_drbg.c326 size_t left = out_len; in mbedtls_hmac_drbg_random_with_add() local
357 while( left != 0 ) in mbedtls_hmac_drbg_random_with_add()
359 size_t use_len = left > md_len ? md_len : left; in mbedtls_hmac_drbg_random_with_add()
371 left -= use_len; in mbedtls_hmac_drbg_random_with_add()
A Dripemd160.c291 uint32_t left; in mbedtls_ripemd160_update() local
296 left = ctx->total[0] & 0x3F; in mbedtls_ripemd160_update()
297 fill = 64 - left; in mbedtls_ripemd160_update()
305 if( left && ilen >= fill ) in mbedtls_ripemd160_update()
307 memcpy( (void *) (ctx->buffer + left), input, fill ); in mbedtls_ripemd160_update()
314 left = 0; in mbedtls_ripemd160_update()
328 memcpy( (void *) (ctx->buffer + left), input, ilen ); in mbedtls_ripemd160_update()
A Dsha1.c278 uint32_t left; in mbedtls_sha1_update() local
286 left = ctx->total[0] & 0x3F; in mbedtls_sha1_update()
287 fill = 64 - left; in mbedtls_sha1_update()
295 if( left && ilen >= fill ) in mbedtls_sha1_update()
297 memcpy( (void *) (ctx->buffer + left), input, fill ); in mbedtls_sha1_update()
304 left = 0; in mbedtls_sha1_update()
317 memcpy( (void *) (ctx->buffer + left), input, ilen ); in mbedtls_sha1_update()
/mbedtls-development/programs/pkey/
A Dgen_key.c56 size_t ret, left = len; in dev_random_entropy_poll() local
66 while( left > 0 ) in dev_random_entropy_poll()
69 ret = fread( p, 1, left, file ); in dev_random_entropy_poll()
77 left -= ret; in dev_random_entropy_poll()
/mbedtls-development/visualc/VS2010/
A D.gitignore5 # Files that may be left over from check-generated-files.sh
/mbedtls-development/doxygen/
A Dmbedtls.doxyfile100 # If left blank, the following values are used ("$name" is automatically
140 # If left blank the directory from which doxygen is run is used as the
150 # If left blank only the name of the header file containing the class
617 # generated by doxygen. Possible values are YES and NO. If left blank
689 # If left blank NO is used.
739 # Possible values are YES and NO. If left blank NO is used.
915 # fine-tune the look of the HTML output. If left blank doxygen will
1329 # executive. If left blank a4 will be used.
1340 # the first chapter. If it is left blank doxygen will generate a
1347 # the last chapter. If it is left blank doxygen will generate a
[all …]
/mbedtls-development/tests/suites/
A Dtest_suite_ecdh.function125 /* Fix rnd_buf_A->x by shifting it left if necessary */
143 /* Fix rnd_buf_B->x by shifting it left if necessary */
A Dtest_suite_ecdsa.function103 /* Fix rnd_buf->x by shifting it left if necessary */
A Dtest_suite_mps.function488 /* 20 left, ask for 70 -> 50 overhead */
/mbedtls-development/docs/architecture/testing/
A Dinvasive-testing.md308 Goal: test that no stray files are left over in the key store after a test that succeeded.
314 Goal: ensure that no stray files are left over in the key store even if a test has failed (as that …

Completed in 23 milliseconds