Searched refs:TCAesKeySched_t (Results 1 – 12 of 12) sorted by relevance
/mcuboot-latest/ext/tinycrypt/lib/include/tinycrypt/ |
D | aes.h | 66 } *TCAesKeySched_t; typedef 79 int tc_aes128_set_encrypt_key(TCAesKeySched_t s, const uint8_t *k); 94 const TCAesKeySched_t s); 110 int tc_aes128_set_decrypt_key(TCAesKeySched_t s, const uint8_t *k); 124 const TCAesKeySched_t s);
|
D | cbc_mode.h | 112 const TCAesKeySched_t sched); 145 const TCAesKeySched_t sched);
|
D | ccm_mode.h | 92 TCAesKeySched_t sched; /* AES key schedule */ 111 int tc_ccm_config(TCCcmMode_t c, TCAesKeySched_t sched, uint8_t *nonce,
|
D | cmac_mode.h | 126 TCAesKeySched_t sched; 143 TCAesKeySched_t sched);
|
D | ctr_mode.h | 104 const TCAesKeySched_t sched);
|
/mcuboot-latest/ext/tinycrypt/lib/source/ |
D | cbc_mode.c | 39 const TCAesKeySched_t sched) in tc_cbc_mode_encrypt() 48 sched == (TCAesKeySched_t) 0 || in tc_cbc_mode_encrypt() 79 const TCAesKeySched_t sched) in tc_cbc_mode_decrypt() 89 sched == (TCAesKeySched_t) 0 || in tc_cbc_mode_decrypt()
|
D | ctr_mode.c | 39 const TCAesKeySched_t sched) in tc_ctr_mode() 53 sched == (TCAesKeySched_t) 0 || in tc_ctr_mode()
|
D | ccm_mode.c | 39 int tc_ccm_config(TCCcmMode_t c, TCAesKeySched_t sched, uint8_t *nonce, in tc_ccm_config() 45 sched == (TCAesKeySched_t) 0 || in tc_ccm_config() 65 unsigned int flag, TCAesKeySched_t sched) in ccm_cbc_mac() 94 unsigned int inlen, uint8_t *ctr, const TCAesKeySched_t sched) in ccm_ctr_mode() 106 sched == (TCAesKeySched_t) 0 || in ccm_ctr_mode()
|
D | aes_encrypt.c | 70 int tc_aes128_set_encrypt_key(TCAesKeySched_t s, const uint8_t *k) in tc_aes128_set_encrypt_key() 79 if (s == (TCAesKeySched_t) 0) { in tc_aes128_set_encrypt_key() 158 int tc_aes_encrypt(uint8_t *out, const uint8_t *in, const TCAesKeySched_t s) in tc_aes_encrypt() 167 } else if (s == (TCAesKeySched_t) 0) { in tc_aes_encrypt()
|
D | aes_decrypt.c | 62 int tc_aes128_set_decrypt_key(TCAesKeySched_t s, const uint8_t *k) in tc_aes128_set_decrypt_key() 129 int tc_aes_decrypt(uint8_t *out, const uint8_t *in, const TCAesKeySched_t s) in tc_aes_decrypt() 138 } else if (s == (TCAesKeySched_t) 0) { in tc_aes_decrypt()
|
D | cmac_mode.c | 97 int tc_cmac_setup(TCCmacState_t s, const uint8_t *key, TCAesKeySched_t sched) in tc_cmac_setup()
|
/mcuboot-latest/ext/tinycrypt/tests/ |
D | test_aes.c | 149 TCAesKeySched_t s) in var_text_test()
|