diff options
author | 2025-05-05 12:10:42 -0700 | |
---|---|---|
committer | 2025-05-12 13:32:53 +0800 | |
commit | 0c08c72980ea8218e6b3829a4bc00664e55a4912 (patch) | |
tree | ec0bac9bb602bfa81fb3cf790327feab5f34d2e2 /crypto | |
parent | crypto: geniv - use memcpy_sglist() instead of null skcipher (diff) | |
download | wireguard-linux-0c08c72980ea8218e6b3829a4bc00664e55a4912.tar.xz wireguard-linux-0c08c72980ea8218e6b3829a4bc00664e55a4912.zip |
crypto: krb5enc - do not select CRYPTO_NULL
The krb5enc code does not use any of the so-called "null algorithms", so
it does not need to select CRYPTO_NULL. Presumably this unused
dependency got copied from one of the other kconfig options.
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig index f0c8cc5e30ae..cf5a427bb54d 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig @@ -239,7 +239,6 @@ config CRYPTO_KRB5ENC select CRYPTO_SKCIPHER select CRYPTO_MANAGER select CRYPTO_HASH - select CRYPTO_NULL help Combined hash and cipher support for Kerberos 5 RFC3961 simplified profile. This is required for Kerberos 5-style encryption, used by |