Searched refs:cipher_id (Results 1 – 10 of 10) sorted by relevance
/mbedtls-3.5.0/tests/suites/ |
D | test_suite_gcm.function | 164 void gcm_bad_parameters(int cipher_id, int direction, 179 TEST_ASSERT(mbedtls_gcm_setkey(&ctx, cipher_id, key_str->x, key_str->len * 8) == 0); 190 void gcm_encrypt_and_tag(int cipher_id, data_t *key_str, 209 TEST_ASSERT(mbedtls_gcm_setkey(&ctx, cipher_id, key_str->x, key_str->len * 8) == init_result); 237 void gcm_decrypt_and_verify(int cipher_id, data_t *key_str, 255 TEST_ASSERT(mbedtls_gcm_setkey(&ctx, cipher_id, key_str->x, key_str->len * 8) == init_result); 294 void gcm_decrypt_and_verify_empty_cipher(int cipher_id, 305 TEST_ASSERT(mbedtls_gcm_setkey(&ctx, cipher_id, key_str->x, key_str->len * 8) == 0); 315 void gcm_decrypt_and_verify_empty_ad(int cipher_id, 327 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); 181 void mbedtls_ccm_encrypt_and_tag(int cipher_id, data_t *key, 202 TEST_EQUAL(mbedtls_ccm_setkey(&ctx, cipher_id, key->x, key->len * 8), 0); 237 void mbedtls_ccm_star_no_tag(int cipher_id, int mode, data_t *key, 245 TEST_EQUAL(mbedtls_ccm_setkey(&ctx, cipher_id, key->x, key->len * 8), 0); 262 void mbedtls_ccm_auth_decrypt(int cipher_id, data_t *key, 281 TEST_EQUAL(mbedtls_ccm_setkey(&ctx, cipher_id, key->x, key->len * 8), 0); 324 void mbedtls_ccm_star_encrypt_and_tag(int cipher_id, 368 TEST_EQUAL(mbedtls_ccm_setkey(&ctx, cipher_id, [all …]
|
D | test_suite_cipher.function | 95 static int cipher_reset_key(mbedtls_cipher_context_t *ctx, int cipher_id, 107 mbedtls_cipher_info_from_type(cipher_id), 113 mbedtls_cipher_info_from_type(cipher_id))); 358 void enc_dec_buf(int cipher_id, char *cipher_string, int key_len, 383 cipher_info = mbedtls_cipher_info_from_type(cipher_id); 497 void enc_fail(int cipher_id, int pad_mode, int key_len, int length_val, 521 cipher_info = mbedtls_cipher_info_from_type(cipher_id); 636 void enc_dec_buf_multipart(int cipher_id, int key_len, int first_length_val, 671 cipher_info = mbedtls_cipher_info_from_type(cipher_id); 770 void decrypt_test_vec(int cipher_id, int pad_mode, data_t *key, [all …]
|
D | test_suite_nist_kw.function | 125 void mbedtls_nist_kw_setkey(int cipher_id, int key_size, 137 ret = mbedtls_nist_kw_setkey(&ctx, cipher_id, key, key_size, is_wrap); 237 void mbedtls_nist_kw_wrap(int cipher_id, int mode, data_t *key, data_t *msg, 248 TEST_ASSERT(mbedtls_nist_kw_setkey(&ctx, cipher_id, 271 void mbedtls_nist_kw_unwrap(int cipher_id, int mode, data_t *key, data_t *msg, 282 TEST_ASSERT(mbedtls_nist_kw_setkey(&ctx, cipher_id,
|
/mbedtls-3.5.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() 74 mbedtls_ccm_setkey(&operation->ctx.ccm, cipher_id, in psa_aead_setup() 94 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 | 124 const mbedtls_cipher_id_t cipher_id, in mbedtls_cipher_info_from_values() argument 131 if (def->info->base->cipher == cipher_id && in mbedtls_cipher_info_from_values()
|
/mbedtls-3.5.0/include/mbedtls/ |
D | cipher.h | 423 const mbedtls_cipher_info_t *mbedtls_cipher_info_from_values(const mbedtls_cipher_id_t cipher_id,
|
/mbedtls-3.5.0/tests/scripts/ |
D | all.sh | 1893 tests/scripts/depends.py cipher_id --unset-use-psa 1929 tests/scripts/depends.py cipher_id
|