diff options
Diffstat (limited to 'Documentation/crypto/api-akcipher.rst')
-rw-r--r-- | Documentation/crypto/api-akcipher.rst | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/Documentation/crypto/api-akcipher.rst b/Documentation/crypto/api-akcipher.rst new file mode 100644 index 000000000000..305e616991c3 --- /dev/null +++ b/Documentation/crypto/api-akcipher.rst @@ -0,0 +1,56 @@ +Asymmetric Cipher Algorithm Definitions +--------------------------------------- + +.. kernel-doc:: include/crypto/akcipher.h + :functions: akcipher_alg + +.. kernel-doc:: include/crypto/akcipher.h + :functions: akcipher_request + +Asymmetric Cipher API +--------------------- + +.. kernel-doc:: include/crypto/akcipher.h + :doc: Generic Public Key API + +.. kernel-doc:: include/crypto/akcipher.h + :functions: crypto_alloc_akcipher + +.. kernel-doc:: include/crypto/akcipher.h + :functions: crypto_free_akcipher + +.. kernel-doc:: include/crypto/akcipher.h + :functions: crypto_akcipher_set_pub_key + +.. kernel-doc:: include/crypto/akcipher.h + :functions: crypto_akcipher_set_priv_key + +Asymmetric Cipher Request Handle +-------------------------------- + +.. kernel-doc:: include/crypto/akcipher.h + :functions: akcipher_request_alloc + +.. kernel-doc:: include/crypto/akcipher.h + :functions: akcipher_request_free + +.. kernel-doc:: include/crypto/akcipher.h + :functions: akcipher_request_set_callback + +.. kernel-doc:: include/crypto/akcipher.h + :functions: akcipher_request_set_crypt + +.. kernel-doc:: include/crypto/akcipher.h + :functions: crypto_akcipher_maxsize + +.. kernel-doc:: include/crypto/akcipher.h + :functions: crypto_akcipher_encrypt + +.. kernel-doc:: include/crypto/akcipher.h + :functions: crypto_akcipher_decrypt + +.. kernel-doc:: include/crypto/akcipher.h + :functions: crypto_akcipher_sign + +.. kernel-doc:: include/crypto/akcipher.h + :functions: crypto_akcipher_verify |