summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorDavid S. Miller <davem@nuts.ninka.net>2003-08-17 15:07:09 -0700
committerDavid S. Miller <davem@nuts.ninka.net>2003-08-17 15:07:09 -0700
commitb10dd5ac2ea8e33dcbb83a308908873d55ada59e (patch)
tree63fb302658d01fd8178a2c271b8183b09f7e9b11 /crypto
parent3a3d5cbd982d65eab57ac8325c5c07ca3a849643 (diff)
[CRYPTO]: Fix cast{5,6} build after cia_ivsize removal.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/cast5.c1
-rw-r--r--crypto/cast6.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/crypto/cast5.c b/crypto/cast5.c
index df0fef591052..83911e20c543 100644
--- a/crypto/cast5.c
+++ b/crypto/cast5.c
@@ -826,7 +826,6 @@ static struct crypto_alg alg = {
.cipher = {
.cia_min_keysize = CAST5_MIN_KEY_SIZE,
.cia_max_keysize = CAST5_MAX_KEY_SIZE,
- .cia_ivsize = CAST5_BLOCK_SIZE,
.cia_setkey = cast5_setkey,
.cia_encrypt = cast5_encrypt,
.cia_decrypt = cast5_decrypt
diff --git a/crypto/cast6.c b/crypto/cast6.c
index 2b5d1c0e53b7..66f683b35469 100644
--- a/crypto/cast6.c
+++ b/crypto/cast6.c
@@ -539,7 +539,6 @@ static struct crypto_alg alg = {
.cipher = {
.cia_min_keysize = CAST6_MIN_KEY_SIZE,
.cia_max_keysize = CAST6_MAX_KEY_SIZE,
- .cia_ivsize = CAST6_BLOCK_SIZE,
.cia_setkey = cast6_setkey,
.cia_encrypt = cast6_encrypt,
.cia_decrypt = cast6_decrypt}