Home
last modified time | relevance | path

Searched refs:mbedtls_cipher_finish (Results 1 – 18 of 18) sorted by relevance

/aosp_15_r20/external/mbedtls/tests/suites/
H A Dtest_suite_cipher.function260 /* 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 Dtest_suite_cipher.function264 /* 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 Dcrypt_and_hash.c351 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 Dcrypt_and_hash.c355 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 Dcipher_aead_demo.c195 CHK(mbedtls_cipher_finish(ctx, p, &olen)); in aead_encrypt()
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/programs/cipher/
H A Dcipher_aead_demo.c195 CHK(mbedtls_cipher_finish(ctx, p, &olen)); in aead_encrypt()
/aosp_15_r20/external/mbedtls/library/
H A Dpkcs12.c239 if ((ret = mbedtls_cipher_finish(&cipher_ctx, output + (*output_len), &finish_olen)) != 0) { in mbedtls_pkcs12_pbe_ext()
H A Dpsa_crypto_cipher.c434 mbedtls_cipher_finish(&operation->ctx.cipher, in mbedtls_psa_cipher_finish()
H A Dcipher.c995 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 Dcipher.h983 int mbedtls_cipher_finish(mbedtls_cipher_context_t *ctx,
/aosp_15_r20/external/mbedtls/include/mbedtls/
H A Dcipher.h993 int mbedtls_cipher_finish(mbedtls_cipher_context_t *ctx,
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/library/
H A Dcipher.c1011 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 Dpsa_crypto_cipher.c568 mbedtls_cipher_finish(&operation->ctx.cipher, in mbedtls_psa_cipher_finish()
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/docs/
H A D3.0-migration-guide.md404 ### 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 Dpsa-transition.md366 …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 D3.0-migration-guide.md404 ### 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 DChangeLog1283 mbedtls_cipher_finish() is now mandatory. Previously the documentation
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/
H A DChangeLog1543 mbedtls_cipher_finish() is now mandatory. Previously the documentation