Linux Kernel
3.7.1
|
Data Fields | |
void(* | encrypt )(const u64 *key, const u32 *input, u32 *output) |
void(* | decrypt )(const u64 *key, const u32 *input, u32 *output) |
void(* | load_encrypt_keys )(const u64 *key) |
void(* | load_decrypt_keys )(const u64 *key) |
void(* | ecb_encrypt )(const u64 *key, const u64 *input, u64 *output, unsigned int len) |
void(* | ecb_decrypt )(const u64 *key, const u64 *input, u64 *output, unsigned int len) |
void(* | cbc_encrypt )(const u64 *key, const u64 *input, u64 *output, unsigned int len, u64 *iv) |
void(* | cbc_decrypt )(const u64 *key, const u64 *input, u64 *output, unsigned int len, u64 *iv) |
void(* | ctr_crypt )(const u64 *key, const u64 *input, u64 *output, unsigned int len, u64 *iv) |
Definition at line 33 of file aes_glue.c.
Definition at line 44 of file aes_glue.c.
Definition at line 42 of file aes_glue.c.
Definition at line 46 of file aes_glue.c.
Definition at line 35 of file aes_glue.c.
Definition at line 40 of file aes_glue.c.
Definition at line 38 of file aes_glue.c.
Definition at line 34 of file aes_glue.c.