diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2017-11-25 18:16:46 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2017-12-11 06:36:56 -0500 |
commit | b5b9007730ce1d90deaf25d7f678511550744bdc (patch) | |
tree | 1a9fd7c7b12244db691770248f0e13d6d42da59e /crypto | |
parent | 45223b78118cbab12744a7e193b6c7c208c15c27 (diff) |
crypto: ecdh - fix typo in KPP dependency of CRYPTO_ECDH
This fixes a typo in the CRYPTO_KPP dependency of CRYPTO_ECDH.
Fixes: 3c4b23901a0c ("crypto: ecdh - Add ECDH software support")
Cc: <stable@vger.kernel.org> # v4.8+
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
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 f7911963bb79..9327fbfccf5a 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig | |||
@@ -130,7 +130,7 @@ config CRYPTO_DH | |||
130 | 130 | ||
131 | config CRYPTO_ECDH | 131 | config CRYPTO_ECDH |
132 | tristate "ECDH algorithm" | 132 | tristate "ECDH algorithm" |
133 | select CRYTPO_KPP | 133 | select CRYPTO_KPP |
134 | select CRYPTO_RNG_DEFAULT | 134 | select CRYPTO_RNG_DEFAULT |
135 | help | 135 | help |
136 | Generic implementation of the ECDH algorithm | 136 | Generic implementation of the ECDH algorithm |