Searched refs:cipher_id (Results 1 – 10 of 10) sorted by relevance
/mbedtls-3.4.0/tests/suites/ |
D | test_suite_gcm.function | 166 void gcm_bad_parameters( int cipher_id, int direction, 181 TEST_ASSERT( mbedtls_gcm_setkey( &ctx, cipher_id, key_str->x, key_str->len * 8 ) == 0 ); 191 void gcm_encrypt_and_tag( int cipher_id, data_t * key_str, 210 … TEST_ASSERT( mbedtls_gcm_setkey( &ctx, cipher_id, key_str->x, key_str->len * 8 ) == init_result ); 238 void gcm_decrypt_and_verify( int cipher_id, data_t * key_str, 256 … TEST_ASSERT( mbedtls_gcm_setkey( &ctx, cipher_id, key_str->x, key_str->len * 8 ) == init_result ); 291 void gcm_decrypt_and_verify_empty_cipher( int cipher_id, 302 TEST_ASSERT( mbedtls_gcm_setkey( &ctx, cipher_id, key_str->x, key_str->len * 8 ) == 0 ); 312 void gcm_decrypt_and_verify_empty_ad( int cipher_id, 324 TEST_ASSERT( mbedtls_gcm_setkey( &ctx, cipher_id, key_str->x, key_str->len * 8 ) == 0 ); [all …]
|
D | test_suite_ccm.function | 77 void mbedtls_ccm_setkey( int cipher_id, int key_size, int result ) 88 ret = mbedtls_ccm_setkey( &ctx, cipher_id, key, key_size ); 179 void mbedtls_ccm_encrypt_and_tag( int cipher_id, data_t * key, 199 TEST_EQUAL( mbedtls_ccm_setkey( &ctx, cipher_id, key->x, key->len * 8 ), 0 ); 235 void mbedtls_ccm_star_no_tag( int cipher_id, int mode, data_t * key, 243 TEST_EQUAL( mbedtls_ccm_setkey( &ctx, cipher_id, key->x, key->len * 8 ), 0 ); 260 void mbedtls_ccm_auth_decrypt( int cipher_id, data_t * key, 278 TEST_EQUAL( mbedtls_ccm_setkey( &ctx, cipher_id, key->x, key->len * 8 ), 0 ); 323 void mbedtls_ccm_star_encrypt_and_tag( int cipher_id, 364 TEST_EQUAL( mbedtls_ccm_setkey( &ctx, cipher_id, [all …]
|
D | test_suite_cipher.function | 113 static int cipher_reset_key( mbedtls_cipher_context_t *ctx, int cipher_id, 126 mbedtls_cipher_info_from_type( cipher_id ), 133 mbedtls_cipher_info_from_type( cipher_id ) ) ); 376 void enc_dec_buf( int cipher_id, char * cipher_string, int key_len, 401 cipher_info = mbedtls_cipher_info_from_type( cipher_id ); 516 void enc_fail( int cipher_id, int pad_mode, int key_len, int length_val, 540 cipher_info = mbedtls_cipher_info_from_type( cipher_id ); 655 void enc_dec_buf_multipart( int cipher_id, int key_len, int first_length_val, 690 cipher_info = mbedtls_cipher_info_from_type( cipher_id ); 783 void decrypt_test_vec( int cipher_id, int pad_mode, data_t * key, [all …]
|
D | test_suite_nist_kw.function | 128 void mbedtls_nist_kw_setkey( int cipher_id, int key_size, 140 ret = mbedtls_nist_kw_setkey( &ctx, cipher_id, key, key_size, is_wrap ); 245 void mbedtls_nist_kw_wrap( int cipher_id, int mode, data_t *key, data_t *msg, 256 TEST_ASSERT( mbedtls_nist_kw_setkey( &ctx, cipher_id, 280 void mbedtls_nist_kw_unwrap( int cipher_id, int mode, data_t *key, data_t *msg, 291 TEST_ASSERT( mbedtls_nist_kw_setkey( &ctx, cipher_id,
|
/mbedtls-3.4.0/library/ |
D | psa_crypto_aead.c | 48 mbedtls_cipher_id_t cipher_id; in psa_aead_setup() local 56 &cipher_id ); in psa_aead_setup() 73 mbedtls_ccm_setkey( &operation->ctx.ccm, cipher_id, in psa_aead_setup() 91 mbedtls_gcm_setkey( &operation->ctx.gcm, cipher_id, in psa_aead_setup()
|
D | psa_crypto_cipher.c | 38 mbedtls_cipher_id_t* cipher_id ) in mbedtls_cipher_info_from_psa() argument 154 if( cipher_id != NULL ) in mbedtls_cipher_info_from_psa() 155 *cipher_id = cipher_id_tmp; in mbedtls_cipher_info_from_psa()
|
D | psa_crypto_cipher.h | 41 mbedtls_cipher_id_t *cipher_id );
|
D | cipher.c | 119 const mbedtls_cipher_id_t cipher_id, in mbedtls_cipher_info_from_values() argument 126 if( def->info->base->cipher == cipher_id && in mbedtls_cipher_info_from_values()
|
/mbedtls-3.4.0/include/mbedtls/ |
D | cipher.h | 425 const mbedtls_cipher_info_t *mbedtls_cipher_info_from_values( const mbedtls_cipher_id_t cipher_id,
|
/mbedtls-3.4.0/tests/scripts/ |
D | all.sh | 1819 tests/scripts/depends.py cipher_id --unset-use-psa 1855 tests/scripts/depends.py cipher_id
|