Searched refs:mbedtls_cipher_finish (Results 1 – 9 of 9) sorted by relevance
/openthread-latest/third_party/mbedtls/repo/tests/suites/ |
D | test_suite_cipher.function | 264 /* mbedtls_cipher_finish() */ 266 mbedtls_cipher_finish(&invalid_ctx, 461 TEST_ASSERT(0 == mbedtls_cipher_finish(&ctx_enc, encbuf + outlen, &outlen)); 482 TEST_ASSERT(0 == mbedtls_cipher_finish(&ctx_dec, decbuf + outlen, &outlen)); 551 TEST_ASSERT(ret == mbedtls_cipher_finish(&ctx, encbuf + outlen, &outlen)); 639 TEST_ASSERT(expected_finish_ret == mbedtls_cipher_finish( 746 TEST_ASSERT(0 == mbedtls_cipher_finish(&ctx_enc, encbuf + totaloutlen, &outlen)); 770 TEST_ASSERT(0 == mbedtls_cipher_finish(&ctx_dec, decbuf + totaloutlen, &outlen)); 827 TEST_ASSERT(finish_result == mbedtls_cipher_finish(&ctx, output + outlen, 1068 TEST_ASSERT(finish_result == mbedtls_cipher_finish(&ctx, output + outlen,
|
/openthread-latest/third_party/mbedtls/repo/programs/aes/ |
D | crypt_and_hash.c | 355 if (mbedtls_cipher_finish(&cipher_ctx, output, &olen) != 0) { in main() 538 if (mbedtls_cipher_finish(&cipher_ctx, output, &olen) != 0) { in main()
|
/openthread-latest/third_party/mbedtls/repo/programs/cipher/ |
D | cipher_aead_demo.c | 195 CHK(mbedtls_cipher_finish(ctx, p, &olen)); in aead_encrypt()
|
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/ |
D | cipher.h | 983 int mbedtls_cipher_finish(mbedtls_cipher_context_t *ctx,
|
/openthread-latest/third_party/mbedtls/repo/library/ |
D | psa_crypto_cipher.c | 568 mbedtls_cipher_finish(&operation->ctx.cipher, in mbedtls_psa_cipher_finish()
|
D | cipher.c | 1011 int mbedtls_cipher_finish(mbedtls_cipher_context_t *ctx, in mbedtls_cipher_finish() function 1387 if ((ret = mbedtls_cipher_finish(ctx, output + *olen, in mbedtls_cipher_crypt()
|
/openthread-latest/third_party/mbedtls/repo/docs/ |
D | 3.0-migration-guide.md | 404 ### Calling `mbedtls_cipher_finish()` is mandatory for all multi-part operations 412 `mbedtls_cipher_finish()` in-between. If you code was missing that call,
|
D | psa-transition.md | 366 …parts, call `mbedtls_cipher_update` as many times as necessary followed by `mbedtls_cipher_finish`. 393 6. Call `mbedtls_cipher_finish` to obtain the last part of the output. Then call `mbedtls_cipher_wr…
|
/openthread-latest/third_party/mbedtls/repo/ |
D | ChangeLog | 1543 mbedtls_cipher_finish() is now mandatory. Previously the documentation
|