api-skcipher.rst 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. Symmetric Key Cipher
  2. ====================
  3. Block Cipher Algorithm Definitions
  4. ----------------------------------
  5. .. kernel-doc:: include/linux/crypto.h
  6. :doc: Block Cipher Algorithm Definitions
  7. .. kernel-doc:: include/linux/crypto.h
  8. :functions: crypto_alg cipher_alg compress_alg
  9. Symmetric Key Cipher API
  10. ------------------------
  11. .. kernel-doc:: include/crypto/skcipher.h
  12. :doc: Symmetric Key Cipher API
  13. .. kernel-doc:: include/crypto/skcipher.h
  14. :functions: crypto_alloc_skcipher crypto_free_skcipher crypto_has_skcipher crypto_skcipher_ivsize crypto_skcipher_blocksize crypto_skcipher_setkey crypto_skcipher_reqtfm crypto_skcipher_encrypt crypto_skcipher_decrypt
  15. Symmetric Key Cipher Request Handle
  16. -----------------------------------
  17. .. kernel-doc:: include/crypto/skcipher.h
  18. :doc: Symmetric Key Cipher Request Handle
  19. .. kernel-doc:: include/crypto/skcipher.h
  20. :functions: crypto_skcipher_reqsize skcipher_request_set_tfm skcipher_request_alloc skcipher_request_free skcipher_request_set_callback skcipher_request_set_crypt
  21. Single Block Cipher API
  22. -----------------------
  23. .. kernel-doc:: include/crypto/internal/cipher.h
  24. :doc: Single Block Cipher API
  25. .. kernel-doc:: include/crypto/internal/cipher.h
  26. :functions: crypto_alloc_cipher crypto_free_cipher crypto_has_cipher crypto_cipher_blocksize crypto_cipher_setkey crypto_cipher_encrypt_one crypto_cipher_decrypt_one