mirror of
https://github.com/torvalds/linux.git
synced 2025-04-06 00:16:18 +00:00

Implement self-testing infrastructure to test the pseudo-random function, key derivation, encryption and checksumming. Add the testing data from rfc8009 to test AES + HMAC-SHA2. Add the testing data from rfc6803 to test Camellia. Note some encryption test vectors here are incomplete, lacking the key usage number needed to derive Ke and Ki, and there are errata for this: https://www.rfc-editor.org/errata_search.php?rfc=6803 Signed-off-by: David Howells <dhowells@redhat.com> cc: Herbert Xu <herbert@gondor.apana.org.au> cc: "David S. Miller" <davem@davemloft.net> cc: Chuck Lever <chuck.lever@oracle.com> cc: Marc Dionne <marc.dionne@auristor.com> cc: Eric Dumazet <edumazet@google.com> cc: Jakub Kicinski <kuba@kernel.org> cc: Paolo Abeni <pabeni@redhat.com> cc: Simon Horman <horms@kernel.org> cc: linux-afs@lists.infradead.org cc: linux-nfs@vger.kernel.org cc: linux-crypto@vger.kernel.org cc: netdev@vger.kernel.org
27 lines
704 B
Plaintext
27 lines
704 B
Plaintext
config CRYPTO_KRB5
|
|
tristate "Kerberos 5 crypto"
|
|
select CRYPTO_MANAGER
|
|
select CRYPTO_KRB5ENC
|
|
select CRYPTO_AUTHENC
|
|
select CRYPTO_SKCIPHER
|
|
select CRYPTO_HASH_INFO
|
|
select CRYPTO_HMAC
|
|
select CRYPTO_CMAC
|
|
select CRYPTO_SHA1
|
|
select CRYPTO_SHA256
|
|
select CRYPTO_SHA512
|
|
select CRYPTO_CBC
|
|
select CRYPTO_CTS
|
|
select CRYPTO_AES
|
|
select CRYPTO_CAMELLIA
|
|
help
|
|
Provide a library for provision of Kerberos-5-based crypto. This is
|
|
intended for network filesystems to use.
|
|
|
|
config CRYPTO_KRB5_SELFTESTS
|
|
bool "Kerberos 5 crypto selftests"
|
|
depends on CRYPTO_KRB5
|
|
help
|
|
Turn on some self-testing for the kerberos 5 crypto functions. These
|
|
will be performed on module load or boot, if compiled in.
|