Searched refs:mbedtls_cipher_finish (Results 1 – 8 of 8) sorted by relevance
/mbedtls-development/tests/suites/ |
A D | test_suite_cipher.function | 240 /* mbedtls_cipher_finish() */ 242 mbedtls_cipher_finish( &invalid_ctx, 433 TEST_ASSERT( 0 == mbedtls_cipher_finish( &ctx_enc, encbuf + outlen, &outlen ) ); 454 TEST_ASSERT( 0 == mbedtls_cipher_finish( &ctx_dec, decbuf + outlen, &outlen ) ); 519 TEST_ASSERT( ret == mbedtls_cipher_finish( &ctx, encbuf + outlen, &outlen ) ); 587 TEST_ASSERT( expected_finish_ret == mbedtls_cipher_finish( 683 TEST_ASSERT( 0 == mbedtls_cipher_finish( &ctx_enc, encbuf + totaloutlen, &outlen ) ); 704 TEST_ASSERT( 0 == mbedtls_cipher_finish( &ctx_dec, decbuf + totaloutlen, &outlen ) ); 756 TEST_ASSERT( finish_result == mbedtls_cipher_finish( &ctx, output + outlen, 993 TEST_ASSERT( finish_result == mbedtls_cipher_finish( &ctx, output + outlen,
|
/mbedtls-development/programs/aes/ |
A D | crypt_and_hash.c | 362 if( mbedtls_cipher_finish( &cipher_ctx, output, &olen ) != 0 ) in main() 532 mbedtls_cipher_finish( &cipher_ctx, output, &olen ); in main()
|
/mbedtls-development/library/ |
A D | pkcs12.c | 170 if( ( ret = mbedtls_cipher_finish( &cipher_ctx, output + olen, &olen ) ) != 0 ) in mbedtls_pkcs12_pbe()
|
A D | cipher.c | 959 int mbedtls_cipher_finish( mbedtls_cipher_context_t *ctx, in mbedtls_cipher_finish() function 1338 if( ( ret = mbedtls_cipher_finish( ctx, output + *olen, in mbedtls_cipher_crypt()
|
A D | psa_crypto_cipher.c | 439 mbedtls_cipher_finish( &operation->ctx.cipher, in cipher_finish()
|
/mbedtls-development/include/mbedtls/ |
A D | cipher.h | 893 int mbedtls_cipher_finish( mbedtls_cipher_context_t *ctx,
|
/mbedtls-development/docs/ |
A D | 3.0-migration-guide.md | 376 ### Calling `mbedtls_cipher_finish()` is mandatory for all multi-part operations 384 `mbedtls_cipher_finish()` in-between. If you code was missing that call,
|
/mbedtls-development/ |
A D | ChangeLog | 93 mbedtls_cipher_finish() is now mandatory. Previously the documentation
|
Completed in 20 milliseconds