Commit b10dd5ac authored by David S. Miller's avatar David S. Miller

[CRYPTO]: Fix cast{5,6} build after cia_ivsize removal.

parent 3a3d5cbd
......@@ -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
......
......@@ -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}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment