Searched refs:mbedtls_cipher_set_iv (Results 1 – 7 of 7) sorted by relevance
/mbedtls-development/tests/suites/ |
A D | test_suite_cipher.function | 205 /* mbedtls_cipher_set_iv() */ 207 mbedtls_cipher_set_iv( &invalid_ctx, 318 TEST_ASSERT( mbedtls_cipher_set_iv( &ctx, iv, MBEDTLS_MAX_IV_LENGTH + 1 ) 322 TEST_ASSERT( mbedtls_cipher_set_iv( &ctx, iv, 0 ) 410 TEST_ASSERT( 0 == mbedtls_cipher_set_iv( &ctx_dec, iv, iv_len ) ); 411 TEST_ASSERT( 0 == mbedtls_cipher_set_iv( &ctx_enc, iv, iv_len ) ); 511 TEST_ASSERT( 0 == mbedtls_cipher_set_iv( &ctx, iv, 16 ) ); 562 TEST_ASSERT( 0 == mbedtls_cipher_set_iv( &ctx_dec, iv, 16 ) ); 657 TEST_ASSERT( 0 == mbedtls_cipher_set_iv( &ctx_dec, iv, iv_len ) ); 658 TEST_ASSERT( 0 == mbedtls_cipher_set_iv( &ctx_enc, iv, iv_len ) ); [all …]
|
/mbedtls-development/programs/aes/ |
A D | crypt_and_hash.c | 320 if( mbedtls_cipher_set_iv( &cipher_ctx, IV, 16 ) != 0 ) in main() 462 if( mbedtls_cipher_set_iv( &cipher_ctx, IV, 16 ) != 0 ) in main()
|
/mbedtls-development/library/ |
A D | pkcs12.c | 158 if( ( ret = mbedtls_cipher_set_iv( &cipher_ctx, iv, cipher_info->iv_size ) ) != 0 ) in mbedtls_pkcs12_pbe()
|
A D | cipher.c | 371 int mbedtls_cipher_set_iv( mbedtls_cipher_context_t *ctx, in mbedtls_cipher_set_iv() function 1328 if( ( ret = mbedtls_cipher_set_iv( ctx, iv, iv_len ) ) != 0 ) in mbedtls_cipher_crypt()
|
A D | psa_crypto_cipher.c | 260 mbedtls_cipher_set_iv( &operation->ctx.cipher, in cipher_set_iv()
|
/mbedtls-development/include/mbedtls/ |
A D | cipher.h | 782 int mbedtls_cipher_set_iv( mbedtls_cipher_context_t *ctx,
|
/mbedtls-development/ |
A D | ChangeLog | 1660 * Ignore IV in mbedtls_cipher_set_iv() when the cipher mode is
|
Completed in 16 milliseconds