Searched refs:remaining (Results 1 – 15 of 15) sorted by relevance
/mbedtls-latest/library/ |
D | poly1305.c | 275 size_t remaining = ilen; in mbedtls_poly1305_update() local 279 if ((remaining > 0U) && (ctx->queue_len > 0U)) { in mbedtls_poly1305_update() 292 remaining = 0U; in mbedtls_poly1305_update() 304 remaining -= queue_free_len; in mbedtls_poly1305_update() 308 if (remaining >= POLY1305_BLOCK_SIZE_BYTES) { in mbedtls_poly1305_update() 309 nblocks = remaining / POLY1305_BLOCK_SIZE_BYTES; in mbedtls_poly1305_update() 314 remaining %= POLY1305_BLOCK_SIZE_BYTES; in mbedtls_poly1305_update() 317 if (remaining > 0U) { in mbedtls_poly1305_update() 319 ctx->queue_len = remaining; in mbedtls_poly1305_update() 320 memcpy(ctx->queue, &input[offset], remaining); in mbedtls_poly1305_update()
|
D | ssl_msg.c | 426 size_t remaining, expansion; in ssl_get_remaining_payload_in_datagram() local 456 remaining = (size_t) ret; in ssl_get_remaining_payload_in_datagram() 464 if (remaining <= expansion) { in ssl_get_remaining_payload_in_datagram() 468 remaining -= expansion; in ssl_get_remaining_payload_in_datagram() 469 if (remaining >= max_len) { in ssl_get_remaining_payload_in_datagram() 470 remaining = max_len; in ssl_get_remaining_payload_in_datagram() 473 return (int) remaining; in ssl_get_remaining_payload_in_datagram() 566 size_t remaining, in ssl_build_inner_plaintext() argument 573 if (remaining == 0) { in ssl_build_inner_plaintext() 578 remaining--; in ssl_build_inner_plaintext() [all …]
|
/mbedtls-latest/tests/suites/ |
D | test_suite_mps.data | 58 MPS Reader: Reclaim with data remaining #0 61 MPS Reader: Reclaim with data remaining #1 64 MPS Reader: Reclaim with data remaining #2 67 MPS Reader: Reclaim with data remaining, continue fetching
|
D | test_suite_shax.function | 245 size_t remaining = input->len; 251 size_t len = remaining >= chunk_size ? chunk_size : remaining; 253 remaining -= len;
|
D | test_suite_aes.function | 182 size_t remaining = length; 184 while (remaining != 0) { 185 size_t l = MIN(remaining, (size_t) step_size); 187 remaining -= l;
|
D | test_suite_psa_crypto_slot_management.function | 1152 * Check we can export the remaining volatile keys and that they have the
|
D | test_suite_x509parse.data | 1599 X509 CRT ASN1 (TBS, inv Validity, data remaining after 'notAfter') 1976 X509 CRT ASN1 (TBS, inv v3Ext, data remaining after extnValue) 2112 X509 CRT ASN1 (TBS, inv SubjectAltName, data remaining after name SEQUENCE) 2232 X509 CRT ASN1 (TBS, inv SubjectAltName, HWModuleName data remaining #1) 2236 X509 CRT ASN1 (TBS, inv SubjectAltName, HWModuleName data remaining #2) 2240 X509 CRT ASN1 (TBS, inv SubjectAltName, HWModuleName data remaining #3)
|
D | test_suite_ssl.function | 4716 uint32_t remaining = max_early_data_size - written_early_data_size; 4726 if (buf_size <= remaining) { 4729 TEST_EQUAL(ret, remaining);
|
D | test_suite_mps.function | 279 * because of data remaining.
|
/mbedtls-latest/docs/ |
D | psa-driver-example-and-guide.md | 25 …tions, the instructions in the above documents can be followed. For the remaining operations which… 77 …the file has a `.jinja` extension, the driver wrapper functions for the remaining entry points are…
|
D | psa-transition.md | 45 * Mbed TLS 5.0.0 (??): Removal of the remaining non-PSA crypto APIs. 634 … `entropy.h`, `ctr_drbg.h` and `hmac_drbg.h`. See the next sections for remaining use cases for [e…
|
/mbedtls-latest/docs/architecture/psa-migration/ |
D | strategy.md | 277 - Step 0 is achieved for most algorithms, with only a few gaps remaining. 279 `MBEDTLS_USE_PSA_CRYPTO` is enabled with only a few gaps remaining (see
|
/mbedtls-latest/docs/architecture/ |
D | psa-storage-resilience.md | 146 … been done if the transaction had not been interrupted, by removing any remaining local storage us… 149 … been done if the transaction had not been interrupted, by removing any remaining local storage us…
|
D | psa-shared-memory.md | 332 All three remaining approaches are suitable for our purposes. However, approach (4) is more complex…
|
/mbedtls-latest/ |
D | ChangeLog | 1937 See docs/architecture/alternative-implementations.md for the remaining
|