Home
last modified time | relevance | path

Searched refs:key_exp (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/u-boot/cmd/
H A Daes.c33 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 Dcommon.c145 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 Duboot_aes.h82 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 Daes.c604 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 Dfw_env.c984 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 Ducsi_ccg.c148 u8 key_exp[4]; member