Searched refs:key_exp (Results 1 – 6 of 6) sorted by relevance
| /OK3568_Linux_fs/u-boot/cmd/ |
| H A D | aes.c | 33 uint8_t key_exp[AES_EXPAND_KEY_LENGTH]; in do_aes() local 57 aes_expand_key(key_ptr, key_exp); in do_aes() 63 aes_cbc_encrypt_blocks(key_exp, src_ptr, dst_ptr, aes_blocks); in do_aes() 65 aes_cbc_decrypt_blocks(key_exp, src_ptr, dst_ptr, aes_blocks); in do_aes()
|
| /OK3568_Linux_fs/u-boot/env/ |
| H A D | common.c | 145 uint8_t key_exp[AES_EXPAND_KEY_LENGTH]; in env_aes_cbc_crypt() local 153 aes_expand_key(key, key_exp); in env_aes_cbc_crypt() 159 aes_cbc_encrypt_blocks(key_exp, data, data, aes_blocks); in env_aes_cbc_crypt() 161 aes_cbc_decrypt_blocks(key_exp, data, data, aes_blocks); in env_aes_cbc_crypt()
|
| /OK3568_Linux_fs/u-boot/include/ |
| H A D | uboot_aes.h | 82 void aes_cbc_encrypt_blocks(u8 *key_exp, u8 *src, u8 *dst, u32 num_aes_blocks); 92 void aes_cbc_decrypt_blocks(u8 *key_exp, u8 *src, u8 *dst, u32 num_aes_blocks);
|
| /OK3568_Linux_fs/u-boot/lib/ |
| H A D | aes.c | 604 void aes_cbc_encrypt_blocks(u8 *key_exp, u8 *src, u8 *dst, u32 num_aes_blocks) in aes_cbc_encrypt_blocks() argument 621 aes_encrypt(tmp_data, key_exp, dst); in aes_cbc_encrypt_blocks() 631 void aes_cbc_decrypt_blocks(u8 *key_exp, u8 *src, u8 *dst, u32 num_aes_blocks) in aes_cbc_decrypt_blocks() argument 645 aes_decrypt(src, key_exp, tmp_data); in aes_cbc_decrypt_blocks()
|
| /OK3568_Linux_fs/u-boot/tools/env/ |
| H A D | fw_env.c | 984 uint8_t key_exp[AES_EXPAND_KEY_LENGTH]; in env_aes_cbc_crypt() local 988 aes_expand_key(key, key_exp); in env_aes_cbc_crypt() 994 aes_cbc_encrypt_blocks(key_exp, data, data, aes_blocks); in env_aes_cbc_crypt() 996 aes_cbc_decrypt_blocks(key_exp, data, data, aes_blocks); in env_aes_cbc_crypt()
|
| /OK3568_Linux_fs/kernel/drivers/usb/typec/ucsi/ |
| H A D | ucsi_ccg.c | 148 u8 key_exp[4]; member
|