Searched refs:words (Results 1 – 7 of 7) sorted by relevance
/mcuboot-3.6.0/ext/tinycrypt/lib/source/ |
D | aes_encrypt.c | 86 s->words[i] = (k[Nb*i]<<24) | (k[Nb*i+1]<<16) | in tc_aes128_set_encrypt_key() 91 t = s->words[i-1]; in tc_aes128_set_encrypt_key() 95 s->words[i] = s->words[i-Nk] ^ t; in tc_aes128_set_encrypt_key() 172 add_round_key(state, s->words); in tc_aes_encrypt() 178 add_round_key(state, s->words + Nb*(i+1)); in tc_aes_encrypt() 183 add_round_key(state, s->words + Nb*(i+1)); in tc_aes_encrypt()
|
D | aes_decrypt.c | 144 add_round_key(state, s->words + Nb*Nr); in tc_aes_decrypt() 149 add_round_key(state, s->words + Nb*i); in tc_aes_decrypt() 155 add_round_key(state, s->words); in tc_aes_decrypt()
|
D | ctr_prng.c | 275 memset(ctx->key.words, 0x00, sizeof ctx->key.words); in tc_ctr_prng_uninstantiate()
|
/mcuboot-3.6.0/ext/tinycrypt/tests/ |
D | test_aes.c | 100 result = check_result(1, expected.words, sizeof(expected.words), s.words, in test_1() 101 sizeof(s.words)); in test_1()
|
D | test_ctr_prng.c | 427 for (i = 0U; i < sizeof ctx.key.words / sizeof ctx.key.words[0]; i++) { in test_uninstantiate() 428 if (0U != ctx.key.words[i]) { in test_uninstantiate()
|
/mcuboot-3.6.0/ext/tinycrypt/lib/include/tinycrypt/ |
D | aes.h | 65 unsigned int words[Nb*(Nr+1)]; member
|
/mcuboot-3.6.0/ext/tinycrypt/documentation/ |
D | tinycrypt.rst | 96 than the ones strictly required by the intended application. In other words, 244 represented using little-endian words - so the least significant word is
|