/aosp_15_r20/external/mbedtls/tests/suites/ |
H A D | test_suite_cipher.function | 260 /* mbedtls_cipher_finish() */ 262 mbedtls_cipher_finish(&invalid_ctx, 457 TEST_ASSERT(0 == mbedtls_cipher_finish(&ctx_enc, encbuf + outlen, &outlen)); 478 TEST_ASSERT(0 == mbedtls_cipher_finish(&ctx_dec, decbuf + outlen, &outlen)); 547 TEST_ASSERT(ret == mbedtls_cipher_finish(&ctx, encbuf + outlen, &outlen)); 635 TEST_ASSERT(expected_finish_ret == mbedtls_cipher_finish( 742 TEST_ASSERT(0 == mbedtls_cipher_finish(&ctx_enc, encbuf + totaloutlen, &outlen)); 766 TEST_ASSERT(0 == mbedtls_cipher_finish(&ctx_dec, decbuf + totaloutlen, &outlen)); 823 TEST_ASSERT(finish_result == mbedtls_cipher_finish(&ctx, output + outlen, 1064 TEST_ASSERT(finish_result == mbedtls_cipher_finish(&ctx, output + outlen,
|
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/tests/suites/ |
H A 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,
|
/aosp_15_r20/external/mbedtls/programs/aes/ |
H A D | crypt_and_hash.c | 351 if (mbedtls_cipher_finish(&cipher_ctx, output, &olen) != 0) { in main() 534 if (mbedtls_cipher_finish(&cipher_ctx, output, &olen) != 0) { in main()
|
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/programs/aes/ |
H A 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()
|
/aosp_15_r20/external/mbedtls/programs/cipher/ |
H A D | cipher_aead_demo.c | 195 CHK(mbedtls_cipher_finish(ctx, p, &olen)); in aead_encrypt()
|
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/programs/cipher/ |
H A D | cipher_aead_demo.c | 195 CHK(mbedtls_cipher_finish(ctx, p, &olen)); in aead_encrypt()
|
/aosp_15_r20/external/mbedtls/library/ |
H A D | pkcs12.c | 239 if ((ret = mbedtls_cipher_finish(&cipher_ctx, output + (*output_len), &finish_olen)) != 0) { in mbedtls_pkcs12_pbe_ext()
|
H A D | psa_crypto_cipher.c | 434 mbedtls_cipher_finish(&operation->ctx.cipher, in mbedtls_psa_cipher_finish()
|
H A D | cipher.c | 995 int mbedtls_cipher_finish(mbedtls_cipher_context_t *ctx, in mbedtls_cipher_finish() function 1371 if ((ret = mbedtls_cipher_finish(ctx, output + *olen, in mbedtls_cipher_crypt()
|
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/include/mbedtls/ |
H A D | cipher.h | 983 int mbedtls_cipher_finish(mbedtls_cipher_context_t *ctx,
|
/aosp_15_r20/external/mbedtls/include/mbedtls/ |
H A D | cipher.h | 993 int mbedtls_cipher_finish(mbedtls_cipher_context_t *ctx,
|
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/library/ |
H A 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()
|
H A D | psa_crypto_cipher.c | 568 mbedtls_cipher_finish(&operation->ctx.cipher, in mbedtls_psa_cipher_finish()
|
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/docs/ |
H A 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,
|
H A 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…
|
/aosp_15_r20/external/mbedtls/docs/ |
H A 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,
|
/aosp_15_r20/external/mbedtls/ |
H A D | ChangeLog | 1283 mbedtls_cipher_finish() is now mandatory. Previously the documentation
|
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/ |
H A D | ChangeLog | 1543 mbedtls_cipher_finish() is now mandatory. Previously the documentation
|