summaryrefslogtreecommitdiff
path: root/crypto/Kconfig
diff options
context:
space:
mode:
authorTadeusz Struk <tadeusz.struk@intel.com>2015-06-16 10:31:01 -0700
committerHerbert Xu <herbert@gondor.apana.org.au>2015-06-17 17:03:53 +0800
commit8b0b3e1274dc6cdca25304e46c17303ba2fcbdc8 (patch)
tree9e2147c89e01e8e7b15ebc88a4ddfc1323637188 /crypto/Kconfig
parente795bc3714e3b4f17d1a336e37d251bc05153f5f (diff)
downloadlinux-crypto-8b0b3e1274dc6cdca25304e46c17303ba2fcbdc8.tar.gz
linux-crypto-8b0b3e1274dc6cdca25304e46c17303ba2fcbdc8.zip
crypto: rsa - add a new rsa generic implementation
Add a new rsa generic SW implementation. This implements only cryptographic primitives. Signed-off-by: Tadeusz Struk <tadeusz.struk@intel.com> Added select on ASN1. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Kconfig')
-rw-r--r--crypto/Kconfig8
1 files changed, 8 insertions, 0 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig
index eb0aca45..d6b2a8b6 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -100,6 +100,14 @@ config CRYPTO_AKCIPHER
select CRYPTO_AKCIPHER2
select CRYPTO_ALGAPI
+config CRYPTO_RSA
+ tristate "RSA algorithm"
+ select AKCIPHER
+ select MPILIB
+ select ASN1
+ help
+ Generic implementation of the RSA public key algorithm.
+
config CRYPTO_MANAGER
tristate "Cryptographic algorithm manager"
select CRYPTO_MANAGER2