/mbedtls-3.5.0/programs/ssl/ |
D | ssl_client2.c | 732 int ret = 0, len, tail_len, i, written, frags, retry_left; in main() local 2505 written = 0; in main() 2509 while ((ret = mbedtls_ssl_write(&ssl, buf + written, in main() 2510 len - written)) < 0) { in main() 2530 written += ret; in main() 2531 } while (written < len); in main() 2564 written = ret; in main() 2566 if (written < len) { in main() 2568 "was truncated to size %u", (unsigned) written); in main() 2572 buf[written] = '\0'; in main() [all …]
|
D | ssl_server2.c | 1469 int ret = 0, len, written, frags, exchanges_left; in main() local 3909 for (written = 0, frags = 0; written < len; written += ret, frags++) { in main() 3910 while ((ret = mbedtls_ssl_write(&ssl, buf + written, len - written)) in main() 3956 written = ret; in main() 3959 buf[written] = '\0'; in main() 3960 mbedtls_printf(" %d bytes written in %d fragments\n\n%s\n", written, frags, (char *) buf); in main()
|
/mbedtls-3.5.0/tests/suites/ |
D | test_suite_psa_crypto_op_fail.misc.data | 2 # test_suite_psa_crypto_op_fail.generated.data. The manually written
|
D | test_suite_ssl.function | 116 size_t i, j, written, read; 176 written = read = 0; 179 input + written, put[j])); 180 written += put_ret[j]; 184 TEST_ASSERT(read <= written); 247 size_t written, read; 276 written = read = 0; 278 send_ret = send(&client, message + written, MSGLEN - written); 282 written += send_ret; 343 size_t written[ROUNDS]; [all …]
|
D | test_suite_psa_crypto_entropy.function | 185 /* The seed is written by nv_seed callback functions therefore the injection will fail */
|
D | test_suite_bignum_mod.function | 297 * manually-written test cases with expected_ret != 0. */ 503 * manually-written test cases with oret != 0. */
|
D | test_suite_x509write.function | 545 // Check correct tag and time written
|
D | test_suite_mps.function | 929 /* Check if output is in accordance with what was written */
|
D | test_suite_bignum.function | 64 /* The witness is written to the end of the buffer, since the buffer is
|
D | test_suite_psa_crypto.function | 405 /* Tag gets written at end of buffer. */
|
/mbedtls-3.5.0/ |
D | BRANCHES.md | 70 keys written under any Mbed TLS 3.x with x <= y). 72 Mbed TLS 3.x can also read keys written by Mbed TLS 2.25.0 through 2.28.x
|
D | CONTRIBUTING.md | 18 - The code should be written in a clean and readable style, and must follow [our coding standards](… 19 - The code should be written in a portable generic way, that will benefit the whole community, and …
|
D | LICENSE | 55 means any form of electronic, verbal, or written communication sent
|
D | README.md | 260 Mbed TLS is mostly written in portable C99; however, it has a few platform requirements that go bey…
|
D | ChangeLog | 2061 value, as specified in RFC 5915. Previously, the value was written 2558 X.509 DNs. Previously, DN attributes were always written in their default
|
/mbedtls-3.5.0/docs/proposed/ |
D | psa-driver-wrappers-codegen-migration-guide.md | 37 Please refer to psa-driver-interface.md for information on how a driver schema can be written.
|
D | psa-driver-interface.md | 197 2. `size_t *key_buffer_length`: the length of the data written to the key buffer in bytes. 208 …r of type `size_t *` is provided to report the actual length of the data written in the buffer if … 437 * `output` buffer where the output is to be written. 489 * `output` Buffer where the implicit key is to be written. 744 …partial success), the number of bytes of random data that the driver has written to the `output` b… 997 …ext respectively, and `*key_buffer_length` contains the length of the data written to `key_buffer`.
|
/mbedtls-3.5.0/docs/architecture/testing/ |
D | test-framework.md | 35 …riptions](#unit-test-descriptions). In addition, the description must be written on the same line …
|
D | invasive-testing.md | 13 * [“Rules”](#rules) gives general rules and is written for brevity.
|
/mbedtls-3.5.0/tests/src/test_helpers/ |
D | ssl_helpers.c | 904 int *written, in mbedtls_ssl_write_fragment() argument 913 int ret = mbedtls_ssl_write(ssl, buf + *written, buf_len - *written); in mbedtls_ssl_write_fragment() 915 *written += ret; in mbedtls_ssl_write_fragment()
|
/mbedtls-3.5.0/docs/architecture/ |
D | alternative-implementations.md | 54 …nd then copy the context upwards through the call chain, or applications written in a language wit…
|
D | tls13-support.md | 275 These macros were introduced after the prototype was written thus are 304 - When an TLS 1.3 structure is written or read by a function or as part of
|
/mbedtls-3.5.0/tests/scripts/ |
D | all.sh | 269 --outcome-file=<path> File where test outcomes are written (not done if
|