Searched refs:aes (Results 1 – 3 of 3) sorted by relevance
/busybox-1.35.0/networking/ |
D | tls_aes.h | 9 void aes_setkey(struct tls_aes *aes, const void *key, unsigned key_len) FAST_FUNC; 11 void aes_encrypt_one_block(struct tls_aes *aes, const void *data, void *dst) FAST_FUNC; 13 void aes_cbc_encrypt(struct tls_aes *aes, void *iv, const void *data, size_t len, void *dst) FAST_F… 14 void aes_cbc_decrypt(struct tls_aes *aes, void *iv, const void *data, size_t len, void *dst) FAST_F…
|
D | tls_aes.c | 329 static void aes_encrypt_1(struct tls_aes *aes, unsigned astate[16]) in aes_encrypt_1() argument 331 unsigned rounds = aes->rounds; in aes_encrypt_1() 332 const uint32_t *RoundKey = aes->key; in aes_encrypt_1() 346 void FAST_FUNC aes_setkey(struct tls_aes *aes, const void *key, unsigned key_len) in aes_setkey() argument 348 aes->rounds = KeyExpansion(aes->key, key, key_len); in aes_setkey() 351 void FAST_FUNC aes_encrypt_one_block(struct tls_aes *aes, const void *data, void *dst) in aes_encrypt_one_block() argument 361 aes_encrypt_1(aes, astate); in aes_encrypt_one_block() 366 void FAST_FUNC aes_cbc_encrypt(struct tls_aes *aes, void *iv, const void *data, size_t len, void *d… in aes_cbc_encrypt() argument 384 aes_encrypt_1(aes, astate); in aes_cbc_encrypt() 394 static void aes_decrypt_1(struct tls_aes *aes, unsigned astate[16]) in aes_decrypt_1() argument [all …]
|
/busybox-1.35.0/modutils/ |
D | Config.src | 149 alias padlock_aes aes 150 alias aes_i586 aes 151 alias aes_generic aes
|