Home
last modified time | relevance | path

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

/openthread-latest/third_party/mbedtls/repo/tests/suites/
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,
/openthread-latest/third_party/mbedtls/repo/programs/aes/
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()
/openthread-latest/third_party/mbedtls/repo/programs/cipher/
Dcipher_aead_demo.c195 CHK(mbedtls_cipher_finish(ctx, p, &olen)); in aead_encrypt()
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/
Dcipher.h983 int mbedtls_cipher_finish(mbedtls_cipher_context_t *ctx,
/openthread-latest/third_party/mbedtls/repo/library/
Dpsa_crypto_cipher.c568 mbedtls_cipher_finish(&operation->ctx.cipher, in mbedtls_psa_cipher_finish()
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()
/openthread-latest/third_party/mbedtls/repo/docs/
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,
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…
/openthread-latest/third_party/mbedtls/repo/
DChangeLog1543 mbedtls_cipher_finish() is now mandatory. Previously the documentation