From 3115860ff33d01ac941839392386612225794e26 Mon Sep 17 00:00:00 2001 From: Miloslav Trmač Date: Fri, 6 Aug 2010 02:51:46 +0200 Subject: Support IV size as large as does (removing the last dependency on in the process). --- cryptodev_int.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cryptodev_int.h') diff --git a/cryptodev_int.h b/cryptodev_int.h index b4059fe..a113ba0 100644 --- a/cryptodev_int.h +++ b/cryptodev_int.h @@ -12,6 +12,7 @@ #include #include #include +#include #define PFX "cryptodev: " #define dprintk(level,severity,format,a...) \ @@ -45,7 +46,7 @@ struct cipher_data struct crypto_ablkcipher* s; struct cryptodev_result *result; struct ablkcipher_request *request; - uint8_t iv[EALG_MAX_BLOCK_LEN]; + uint8_t iv[NCR_CIPHER_MAX_BLOCK_LEN]; } async; }; -- cgit