diff options
author | Ard Biesheuvel <ardb@kernel.org> | 2019-11-09 18:09:53 +0100 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2019-11-17 02:02:49 +0100 |
commit | d63007eb954e425f45766482813738f41db9af45 (patch) | |
tree | d1c060e2b0b2b6b5489a0fdaf93c90510cec9345 /Documentation/crypto/crypto_engine.rst | |
parent | crypto: nx - remove stale comment referring to the blkcipher walk API (diff) | |
download | linux-d63007eb954e425f45766482813738f41db9af45.tar.xz linux-d63007eb954e425f45766482813738f41db9af45.zip |
crypto: ablkcipher - remove deprecated and unused ablkcipher support
Now that all users of the deprecated ablkcipher interface have been
moved to the skcipher interface, ablkcipher is no longer used and
can be removed.
Reviewed-by: Eric Biggers <ebiggers@kernel.org>
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'Documentation/crypto/crypto_engine.rst')
-rw-r--r-- | Documentation/crypto/crypto_engine.rst | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Documentation/crypto/crypto_engine.rst b/Documentation/crypto/crypto_engine.rst index 3baa23c2cd08..25cf9836c336 100644 --- a/Documentation/crypto/crypto_engine.rst +++ b/Documentation/crypto/crypto_engine.rst @@ -63,8 +63,6 @@ request by using: When your driver receives a crypto_request, you must to transfer it to the crypto engine via one of: -* crypto_transfer_ablkcipher_request_to_engine() - * crypto_transfer_aead_request_to_engine() * crypto_transfer_akcipher_request_to_engine() @@ -75,8 +73,6 @@ the crypto engine via one of: At the end of the request process, a call to one of the following functions is needed: -* crypto_finalize_ablkcipher_request() - * crypto_finalize_aead_request() * crypto_finalize_akcipher_request() |