diff options
author | Eric Biggers <ebiggers@google.com> | 2019-10-11 21:38:48 -0700 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2019-10-23 19:46:57 +1100 |
commit | 64db5e7439fb582e394ea413822bd1a43a47bc55 (patch) | |
tree | 08e91c4e9f6b7e5a1f02bf3ac4b697472d7b55ef /crypto/Kconfig | |
parent | fcf801cc551a05a439f819d91b5f853a49c8d243 (diff) | |
download | linux-64db5e7439fb582e394ea413822bd1a43a47bc55.tar.gz linux-64db5e7439fb582e394ea413822bd1a43a47bc55.tar.bz2 linux-64db5e7439fb582e394ea413822bd1a43a47bc55.zip |
crypto: sparc/aes - convert to skcipher API
Convert the glue code for the SPARC64 AES opcodes implementations of
AES-ECB, AES-CBC, and AES-CTR from the deprecated "blkcipher" API to the
"skcipher" API. This is needed in order for the blkcipher API to be
removed.
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 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig index 29472fb795f3..728978838578 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig @@ -1098,8 +1098,7 @@ config CRYPTO_AES_NI_INTEL config CRYPTO_AES_SPARC64 tristate "AES cipher algorithms (SPARC64)" depends on SPARC64 - select CRYPTO_CRYPTD - select CRYPTO_ALGAPI + select CRYPTO_BLKCIPHER help Use SPARC64 crypto opcodes for AES algorithm. |