Home
last modified time | relevance | path

Searched refs:tc_aes_encrypt (Results 1 – 9 of 9) sorted by relevance

/mcuboot-latest/ext/tinycrypt/lib/source/
Dccm_mode.c81 (void) tc_aes_encrypt(T, T, sched); in ccm_cbc_mac()
123 if (!tc_aes_encrypt(buffer, nonce, sched)) { in ccm_ctr_mode()
169 (void) tc_aes_encrypt(tag, b, c->sched); in tc_ccm_generation_encryption()
189 (void) tc_aes_encrypt(b, b, c->sched); in tc_ccm_generation_encryption()
234 (void) tc_aes_encrypt(b, b, c->sched); in tc_ccm_decryption_verification()
250 (void) tc_aes_encrypt(b, b, c->sched); in tc_ccm_decryption_verification()
Dcmac_mode.c115 tc_aes_encrypt(s->iv, s->iv, s->sched); in tc_cmac_setup()
200 tc_aes_encrypt(s->iv, s->iv, s->sched); in tc_cmac_update()
208 tc_aes_encrypt(s->iv, s->iv, s->sched); in tc_cmac_update()
248 tc_aes_encrypt(tag, s->iv, s->sched); in tc_cmac_final()
Dctr_mode.c70 if (tc_aes_encrypt(buffer, nonce, sched)) { in tc_ctr_mode()
Dctr_prng.c93 (void)tc_aes_encrypt(output_block, ctx->V, &ctx->key); in tc_ctr_prng_update()
247 (void)tc_aes_encrypt(output_block, ctx->V, &ctx->key); in tc_ctr_prng_generate()
Dcbc_mode.c66 (void)tc_aes_encrypt(buffer, buffer, sched); in tc_cbc_mode_encrypt()
Daes_encrypt.c158 int tc_aes_encrypt(uint8_t *out, const uint8_t *in, const TCAesKeySched_t s) in tc_aes_encrypt() function
/mcuboot-latest/ext/tinycrypt/tests/
Dtest_aes.c132 if (tc_aes_encrypt(ciphertext, nist_input, &s) == 0) { in test_2()
155 (void)tc_aes_encrypt(ciphertext, in, s); in var_text_test()
1111 (void)tc_aes_encrypt(ciphertext, plaintext, &s); in var_key_test()
Dtest_cmac_mode.c90 tc_aes_encrypt(L, zero, s.sched); in verify_gf_2_128_double()
/mcuboot-latest/ext/tinycrypt/lib/include/tinycrypt/
Daes.h93 int tc_aes_encrypt(uint8_t *out, const uint8_t *in,