diff options
author | Prabhjot Khurana <prabhjot.khurana@intel.com> | 2021-10-20 11:35:34 +0100 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2021-10-29 21:04:03 +0800 |
commit | 1730c5aa3b158b15af567eb3aae84f5cf6ca66f2 (patch) | |
tree | dd0883682c0337f65cc7fc342d612ddfa6d48e41 /Documentation | |
parent | cad439fc040efe5f4381e3a7d583c5c200dbc186 (diff) | |
download | linux-stable-1730c5aa3b158b15af567eb3aae84f5cf6ca66f2.tar.gz linux-stable-1730c5aa3b158b15af567eb3aae84f5cf6ca66f2.tar.bz2 linux-stable-1730c5aa3b158b15af567eb3aae84f5cf6ca66f2.zip |
crypto: engine - Add KPP Support to Crypto Engine
Add KPP support to the crypto engine queue manager, so that it can be
used to simplify the logic of KPP device drivers as done for other
crypto drivers.
Signed-off-by: Prabhjot Khurana <prabhjot.khurana@intel.com>
Signed-off-by: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/crypto/crypto_engine.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/crypto/crypto_engine.rst b/Documentation/crypto/crypto_engine.rst index 25cf9836c336..d562ea17d994 100644 --- a/Documentation/crypto/crypto_engine.rst +++ b/Documentation/crypto/crypto_engine.rst @@ -69,6 +69,8 @@ the crypto engine via one of: * crypto_transfer_hash_request_to_engine() +* crypto_transfer_kpp_request_to_engine() + * crypto_transfer_skcipher_request_to_engine() At the end of the request process, a call to one of the following functions is needed: @@ -79,4 +81,6 @@ At the end of the request process, a call to one of the following functions is n * crypto_finalize_hash_request() +* crypto_finalize_kpp_request() + * crypto_finalize_skcipher_request() |