Lines Matching refs:u64
27 u64 encrypt_key[CAMELLIA_TABLE_BYTE_LEN / sizeof(u64)];
28 u64 decrypt_key[CAMELLIA_TABLE_BYTE_LEN / sizeof(u64)];
32 extern void camellia_sparc64_key_expand(const u32 *in_key, u64 *encrypt_key,
33 unsigned int key_len, u64 *decrypt_key);
54 extern void camellia_sparc64_crypt(const u64 *key, const u32 *input,
75 extern void camellia_sparc64_load_keys(const u64 *key, unsigned int key_len);
77 typedef void ecb_crypt_op(const u64 *input, u64 *output, unsigned int len,
78 const u64 *key);
92 const u64 *key; in __ecb_crypt()
112 const u64 *src64; in __ecb_crypt()
113 u64 *dst64; in __ecb_crypt()
115 src64 = (const u64 *)walk.src.virt.addr; in __ecb_crypt()
116 dst64 = (u64 *) walk.dst.virt.addr; in __ecb_crypt()
140 typedef void cbc_crypt_op(const u64 *input, u64 *output, unsigned int len,
141 const u64 *key, u64 *iv);
155 const u64 *key; in cbc_encrypt()
172 const u64 *src64; in cbc_encrypt()
173 u64 *dst64; in cbc_encrypt()
175 src64 = (const u64 *)walk.src.virt.addr; in cbc_encrypt()
176 dst64 = (u64 *) walk.dst.virt.addr; in cbc_encrypt()
178 (u64 *) walk.iv); in cbc_encrypt()
194 const u64 *key; in cbc_decrypt()
211 const u64 *src64; in cbc_decrypt()
212 u64 *dst64; in cbc_decrypt()
214 src64 = (const u64 *)walk.src.virt.addr; in cbc_decrypt()
215 dst64 = (u64 *) walk.dst.virt.addr; in cbc_decrypt()
217 (u64 *) walk.iv); in cbc_decrypt()