Home
last modified time | relevance | path

Searched refs:total (Results 1 – 16 of 16) sorted by relevance

/mbedtls-development/scripts/
A Dmassif_max.pl42 my $total = $heap + $heap_extra + $stack;
43 if( $total > $max ) {
44 ($max, $max_heap, $max_he, $max_stack) = ($total, $heap, $heap_extra, $stack);
/mbedtls-development/library/
A Dmd5.c70 ctx->total[0] = 0; in mbedtls_md5_starts()
71 ctx->total[1] = 0; in mbedtls_md5_starts()
233 left = ctx->total[0] & 0x3F; in mbedtls_md5_update()
236 ctx->total[0] += (uint32_t) ilen; in mbedtls_md5_update()
237 ctx->total[0] &= 0xFFFFFFFF; in mbedtls_md5_update()
239 if( ctx->total[0] < (uint32_t) ilen ) in mbedtls_md5_update()
240 ctx->total[1]++; in mbedtls_md5_update()
283 used = ctx->total[0] & 0x3F; in mbedtls_md5_finish()
306 high = ( ctx->total[0] >> 29 ) in mbedtls_md5_finish()
307 | ( ctx->total[1] << 3 ); in mbedtls_md5_finish()
[all …]
A Dsha256.c90 ctx->total[0] = 0; in mbedtls_sha256_starts()
91 ctx->total[1] = 0; in mbedtls_sha256_starts()
279 left = ctx->total[0] & 0x3F; in mbedtls_sha256_update()
282 ctx->total[0] += (uint32_t) ilen; in mbedtls_sha256_update()
283 ctx->total[0] &= 0xFFFFFFFF; in mbedtls_sha256_update()
285 if( ctx->total[0] < (uint32_t) ilen ) in mbedtls_sha256_update()
286 ctx->total[1]++; in mbedtls_sha256_update()
331 used = ctx->total[0] & 0x3F; in mbedtls_sha256_finish()
354 high = ( ctx->total[0] >> 29 ) in mbedtls_sha256_finish()
355 | ( ctx->total[1] << 3 ); in mbedtls_sha256_finish()
[all …]
A Dsha512.c104 ctx->total[0] = 0; in mbedtls_sha512_starts()
105 ctx->total[1] = 0; in mbedtls_sha512_starts()
313 left = (unsigned int) (ctx->total[0] & 0x7F); in mbedtls_sha512_update()
316 ctx->total[0] += (uint64_t) ilen; in mbedtls_sha512_update()
318 if( ctx->total[0] < (uint64_t) ilen ) in mbedtls_sha512_update()
319 ctx->total[1]++; in mbedtls_sha512_update()
364 used = ctx->total[0] & 0x7F; in mbedtls_sha512_finish()
387 high = ( ctx->total[0] >> 61 ) in mbedtls_sha512_finish()
388 | ( ctx->total[1] << 3 ); in mbedtls_sha512_finish()
389 low = ( ctx->total[0] << 3 ); in mbedtls_sha512_finish()
A Dripemd160.c71 ctx->total[0] = 0; in mbedtls_ripemd160_starts()
72 ctx->total[1] = 0; in mbedtls_ripemd160_starts()
296 left = ctx->total[0] & 0x3F; in mbedtls_ripemd160_update()
299 ctx->total[0] += (uint32_t) ilen; in mbedtls_ripemd160_update()
300 ctx->total[0] &= 0xFFFFFFFF; in mbedtls_ripemd160_update()
302 if( ctx->total[0] < (uint32_t) ilen ) in mbedtls_ripemd160_update()
303 ctx->total[1]++; in mbedtls_ripemd160_update()
353 high = ( ctx->total[0] >> 29 ) in mbedtls_ripemd160_finish()
354 | ( ctx->total[1] << 3 ); in mbedtls_ripemd160_finish()
355 low = ( ctx->total[0] << 3 ); in mbedtls_ripemd160_finish()
[all …]
A Dsha1.c82 ctx->total[0] = 0; in mbedtls_sha1_starts()
83 ctx->total[1] = 0; in mbedtls_sha1_starts()
286 left = ctx->total[0] & 0x3F; in mbedtls_sha1_update()
289 ctx->total[0] += (uint32_t) ilen; in mbedtls_sha1_update()
290 ctx->total[0] &= 0xFFFFFFFF; in mbedtls_sha1_update()
292 if( ctx->total[0] < (uint32_t) ilen ) in mbedtls_sha1_update()
293 ctx->total[1]++; in mbedtls_sha1_update()
338 used = ctx->total[0] & 0x3F; in mbedtls_sha1_finish()
361 high = ( ctx->total[0] >> 29 ) in mbedtls_sha1_finish()
362 | ( ctx->total[1] << 3 ); in mbedtls_sha1_finish()
[all …]
A Drsa.c1544 size_t total, in mem_move_to_left() argument
1549 if( total == 0 ) in mem_move_to_left()
1551 for( i = 0; i < total; i++ ) in mem_move_to_left()
1553 unsigned no_op = size_greater_than( total - offset, i ); in mem_move_to_left()
1557 for( n = 0; n < total - 1; n++ ) in mem_move_to_left()
1563 buf[total-1] = if_int( no_op, buf[total-1], 0 ); in mem_move_to_left()
/mbedtls-development/tests/suites/
A Dtest_suite_asn1write.data199 ASN.1 Write AlgorithmIdentifier, total length=0x7f
202 ASN.1 Write AlgorithmIdentifier, total length=0x80
205 ASN.1 Write AlgorithmIdentifier, total length=0xff
208 ASN.1 Write AlgorithmIdentifier, total length=0x100
211 ASN.1 Write AlgorithmIdentifier, total length=0xffff
214 ASN.1 Write AlgorithmIdentifier, total length=0x10000
217 ASN.1 Write AlgorithmIdentifier, total length=0xffffff
220 ASN.1 Write AlgorithmIdentifier, total length=0x1000000
A Dtest_suite_x509parse.data1492 X509 CRT ASN1 (TBS, inv SubPubKeyInfo, total length mismatch)
2492 X509 CSR ASN.1 (total length mistmatch)
/mbedtls-development/include/mbedtls/
A Dripemd160.h44 uint32_t MBEDTLS_PRIVATE(total)[2]; /*!< number of bytes processed */
A Dmd5.h53 uint32_t MBEDTLS_PRIVATE(total)[2]; /*!< number of bytes processed */
A Dsha1.h59 uint32_t MBEDTLS_PRIVATE(total)[2]; /*!< The number of Bytes processed. */
A Dsha256.h54 uint32_t MBEDTLS_PRIVATE(total)[2]; /*!< The number of Bytes processed. */
A Dsha512.h53 uint64_t MBEDTLS_PRIVATE(total)[2]; /*!< The number of Bytes processed. */
/mbedtls-development/docs/proposed/
A Dpsa-driver-interface.md422 …not collect enough entropy, the core makes more similar rounds, until the total amount of collecte…
542 …_i$ and an entropy estimate $e_i$ on the $i$th call. It does so until the total entropy estimate $…
568 …s nonzero, the core must have called `"add_entropy"` at least once with a total of at least `"init…
/mbedtls-development/
A DChangeLog1088 * Enforce that mbedtls_entropy_func() gathers a total of

Completed in 29 milliseconds