diff options
author | Eric Biggers <ebiggers@google.com> | 2019-03-10 12:00:54 -0700 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2019-03-22 20:57:26 +0800 |
commit | d628132a5e3d0183ac59a3ebbd3a9dff8b20ac7e (patch) | |
tree | 14e42742d58400e0eec9c585a7aa07435972825f /crypto/Kconfig | |
parent | de272ca72c6152e26b9799d21eb511aac03b6e2d (diff) | |
download | talos-op-linux-d628132a5e3d0183ac59a3ebbd3a9dff8b20ac7e.tar.gz talos-op-linux-d628132a5e3d0183ac59a3ebbd3a9dff8b20ac7e.zip |
crypto: x86/aegis128l - convert to use AEAD SIMD helpers
Convert the x86 implementation of AEGIS-128L to use the AEAD SIMD
helpers, rather than hand-rolling the same functionality. This
simplifies the code and also fixes the bug where the user-provided
aead_request is modified.
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Kconfig')
-rw-r--r-- | crypto/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig index 5b2c4cd7923f..ff05a87cf9e0 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig @@ -318,7 +318,7 @@ config CRYPTO_AEGIS128L_AESNI_SSE2 tristate "AEGIS-128L AEAD algorithm (x86_64 AESNI+SSE2 implementation)" depends on X86 && 64BIT select CRYPTO_AEAD - select CRYPTO_CRYPTD + select CRYPTO_SIMD help AESNI+SSE2 implementation of the AEGSI-128L dedicated AEAD algorithm. |