]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - drivers/crypto/geode-aes.h
Merge tag 'staging-5.5-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh...
[linux.git] / drivers / crypto / geode-aes.h
index 5c6e131a8f9d181417ba8586a24d76954a52e9bd..6d0a0cdc7647343501172a25f393e00dd2d3922e 100644 (file)
 
 #define AES_OP_TIMEOUT    0x50000
 
-struct geode_aes_op {
-
-       void *src;
-       void *dst;
-
-       u32 mode;
-       u32 dir;
-       u32 flags;
-       int len;
-
+struct geode_aes_tfm_ctx {
        u8 key[AES_KEYSIZE_128];
-       u8 *iv;
-
        union {
-               struct crypto_blkcipher *blk;
+               struct crypto_skcipher *skcipher;
                struct crypto_cipher *cip;
        } fallback;
        u32 keylen;