Home
last modified time | relevance | path

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

/third_party/mbedtls/tests/suites/
Dtest_suite_cipher.function278 /* mbedtls_cipher_finish() */
280 mbedtls_cipher_finish( &invalid_ctx,
471 TEST_ASSERT( 0 == mbedtls_cipher_finish( &ctx_enc, encbuf + outlen, &outlen ) );
492 TEST_ASSERT( 0 == mbedtls_cipher_finish( &ctx_dec, decbuf + outlen, &outlen ) );
557 TEST_ASSERT( ret == mbedtls_cipher_finish( &ctx, encbuf + outlen, &outlen ) );
625 TEST_ASSERT( expected_finish_ret == mbedtls_cipher_finish(
721 TEST_ASSERT( 0 == mbedtls_cipher_finish( &ctx_enc, encbuf + totaloutlen, &outlen ) );
742 TEST_ASSERT( 0 == mbedtls_cipher_finish( &ctx_dec, decbuf + totaloutlen, &outlen ) );
794 TEST_ASSERT( finish_result == mbedtls_cipher_finish( &ctx, output + outlen,
1031 TEST_ASSERT( finish_result == mbedtls_cipher_finish( &ctx, output + outlen,
/third_party/mbedtls/programs/aes/
Dcrypt_and_hash.c407 if( mbedtls_cipher_finish( &cipher_ctx, output, &olen ) != 0 ) in main()
613 if( mbedtls_cipher_finish( &cipher_ctx, output, &olen ) != 0 ) in main()
/third_party/lwip/src/apps/snmp/
Dsnmpv3_mbedtls.c172 if (mbedtls_cipher_finish(&ctx, out_bytes, &out_len) != 0) { in snmpv3_crypt()
/third_party/mbedtls/library/
Dpkcs12.c173 if( ( ret = mbedtls_cipher_finish( &cipher_ctx, output + olen, &olen ) ) != 0 ) in mbedtls_pkcs12_pbe()
Dpsa_crypto_cipher.c414 mbedtls_cipher_finish( &operation->ctx.cipher, in mbedtls_psa_cipher_finish()
Dcipher.c939 int mbedtls_cipher_finish( mbedtls_cipher_context_t *ctx, in mbedtls_cipher_finish() function
1328 if( ( ret = mbedtls_cipher_finish( ctx, output + *olen, in mbedtls_cipher_crypt()
/third_party/mbedtls/include/mbedtls/
Dcipher.h969 int mbedtls_cipher_finish( mbedtls_cipher_context_t *ctx,
/third_party/mbedtls/docs/
D3.0-migration-guide.md376 ### Calling `mbedtls_cipher_finish()` is mandatory for all multi-part operations
384 `mbedtls_cipher_finish()` in-between. If you code was missing that call,
/third_party/mbedtls/
DChangeLog272 mbedtls_cipher_finish() is now mandatory. Previously the documentation