Searched refs:iv_size (Results 1 – 12 of 12) sorted by relevance
/openthread-3.5.0/third_party/mbedtls/repo/include/mbedtls/ |
D | cipher.h | 299 unsigned int iv_size; member 350 size_t iv_size; member 551 if( ctx->iv_size != 0 ) in mbedtls_cipher_get_iv_size() 552 return (int) ctx->iv_size; in mbedtls_cipher_get_iv_size() 554 return (int) ctx->cipher_info->iv_size; in mbedtls_cipher_get_iv_size()
|
/openthread-3.5.0/third_party/mbedtls/repo/programs/psa/ |
D | crypto_examples.c | 100 size_t iv_size, in cipher_encrypt() argument 116 status = psa_cipher_generate_iv( &operation, iv, iv_size, &iv_len ); in cipher_encrypt() 131 size_t iv_size, in cipher_decrypt() argument 146 status = psa_cipher_set_iv( &operation, iv, iv_size ); in cipher_decrypt()
|
/openthread-3.5.0/third_party/mbedtls/repo/library/ |
D | pkcs12.c | 193 iv, cipher_info->iv_size ) ) != 0 ) in mbedtls_pkcs12_pbe() 206 if( ( ret = mbedtls_cipher_set_iv( &cipher_ctx, iv, cipher_info->iv_size ) ) != 0 ) in mbedtls_pkcs12_pbe()
|
D | cipher.c | 379 actual_iv_size = ctx->cipher_info->iv_size; in mbedtls_cipher_set_iv() 401 ctx->iv_size = actual_iv_size; in mbedtls_cipher_set_iv() 450 ctx->iv, ctx->iv_size, ad, ad_len ) ); in mbedtls_cipher_update_ad() 1348 if ( ( iv_len != ctx->cipher_info->iv_size ) || in mbedtls_cipher_aead_encrypt() 1445 if ( ( iv_len != ctx->cipher_info->iv_size ) || in mbedtls_cipher_aead_decrypt()
|
D | pkcs5.c | 180 enc_scheme_params.len != cipher_info->iv_size ) in mbedtls_pkcs5_pbes2()
|
D | psa_crypto.c | 3395 size_t iv_size, in psa_cipher_generate_iv() argument 3415 if( iv_size < default_iv_length ) in psa_cipher_generate_iv()
|
D | ssl_tls.c | 1159 transform->ivlen = cipher_info->iv_size; in ssl_populate_transform()
|
/openthread-3.5.0/third_party/mbedtls/repo/include/psa/ |
D | crypto_struct.h | 157 uint8_t iv_size; member
|
D | crypto.h | 1919 size_t iv_size,
|
/openthread-3.5.0/third_party/mbedtls/repo/tests/suites/ |
D | test_suite_psa_crypto_driver_wrappers.function | 433 size_t iv_size = PSA_CIPHER_IV_LENGTH ( key_type, alg ); 469 PSA_ASSERT( psa_cipher_set_iv( &operation, output1, iv_size ) ); 494 ASSERT_COMPARE( output1 + iv_size, output1_length - iv_size,
|
D | test_suite_psa_crypto.function | 2696 size_t iv_size = PSA_CIPHER_IV_LENGTH ( key_type, alg ); 2732 PSA_ASSERT( psa_cipher_set_iv( &operation, output1, iv_size ) ); 2755 ASSERT_COMPARE( output1 + iv_size, output1_length - iv_size, 3153 size_t iv_size = 16; 3181 iv, iv_size,
|
D | test_suite_ssl.function | 1214 CHK( cipher_info->iv_size <= 16 ); 1307 ivlen = cipher_info->iv_size;
|