diff options
author | Sebastian Andrzej Siewior <sebastian@breakpoint.cc> | 2012-06-26 12:13:46 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2012-06-27 02:42:07 -0400 |
commit | b9b0f080fac541d88eee4d5175c3f6470a9e9189 (patch) | |
tree | 73a08bbeb879382e14d73e0f34548a1f17dd8c37 /crypto | |
parent | a0ca6ca022ac197e159bb5d22a08e3c3aebb242c (diff) |
crypto: arc4 - now arc needs blockcipher support
Since commit ce6dd368 ("crypto: arc4 - improve performance by adding
ecb(arc4)) we need to pull in a blkcipher.
|ERROR: "crypto_blkcipher_type" [crypto/arc4.ko] undefined!
|ERROR: "blkcipher_walk_done" [crypto/arc4.ko] undefined!
|ERROR: "blkcipher_walk_virt" [crypto/arc4.ko] undefined!
Signed-off-by: Sebastian Andrzej Siewior <sebastian@breakpoint.cc>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig index 02e303774691..a3238051b03e 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig | |||
@@ -604,7 +604,7 @@ config CRYPTO_ANUBIS | |||
604 | 604 | ||
605 | config CRYPTO_ARC4 | 605 | config CRYPTO_ARC4 |
606 | tristate "ARC4 cipher algorithm" | 606 | tristate "ARC4 cipher algorithm" |
607 | select CRYPTO_ALGAPI | 607 | select CRYPTO_BLKCIPHER |
608 | help | 608 | help |
609 | ARC4 cipher algorithm. | 609 | ARC4 cipher algorithm. |
610 | 610 | ||