]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - drivers/crypto/geode-aes.h
Merge commit 'v2.6.30-rc1' into x86/urgent
[karo-tx-linux.git] / drivers / crypto / geode-aes.h
index 2f1d55982aacd7b64240071c776ae59cc5787c62..f1855b50da48d53cbc3e1f2d6d953529e56252d5 100644 (file)
@@ -65,7 +65,13 @@ struct geode_aes_op {
        int len;
 
        u8 key[AES_KEY_LENGTH];
-       u8 iv[AES_IV_LENGTH];
+       u8 *iv;
+
+       union {
+               struct crypto_blkcipher *blk;
+               struct crypto_cipher *cip;
+       } fallback;
+       u32 keylen;
 };
 
 #endif