api-skcipher.rst 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. Block Cipher Algorithm Definitions
  2. ----------------------------------
  3. .. kernel-doc:: include/linux/crypto.h
  4. :doc: Block Cipher Algorithm Definitions
  5. .. kernel-doc:: include/linux/crypto.h
  6. :functions: crypto_alg ablkcipher_alg blkcipher_alg cipher_alg
  7. Symmetric Key Cipher API
  8. ------------------------
  9. .. kernel-doc:: include/crypto/skcipher.h
  10. :doc: Symmetric Key Cipher API
  11. .. kernel-doc:: include/crypto/skcipher.h
  12. :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
  13. Symmetric Key Cipher Request Handle
  14. -----------------------------------
  15. .. kernel-doc:: include/crypto/skcipher.h
  16. :doc: Symmetric Key Cipher Request Handle
  17. .. kernel-doc:: include/crypto/skcipher.h
  18. :functions: crypto_skcipher_reqsize skcipher_request_set_tfm skcipher_request_alloc skcipher_request_free skcipher_request_set_callback skcipher_request_set_crypt
  19. Single Block Cipher API
  20. -----------------------
  21. .. kernel-doc:: include/linux/crypto.h
  22. :doc: Single Block Cipher API
  23. .. kernel-doc:: include/linux/crypto.h
  24. :functions: crypto_alloc_cipher crypto_free_cipher crypto_has_cipher crypto_cipher_blocksize crypto_cipher_setkey crypto_cipher_encrypt_one crypto_cipher_decrypt_one
  25. Asynchronous Block Cipher API - Deprecated
  26. ------------------------------------------
  27. .. kernel-doc:: include/linux/crypto.h
  28. :doc: Asynchronous Block Cipher API
  29. .. kernel-doc:: include/linux/crypto.h
  30. :functions: crypto_free_ablkcipher crypto_has_ablkcipher crypto_ablkcipher_ivsize crypto_ablkcipher_blocksize crypto_ablkcipher_setkey crypto_ablkcipher_reqtfm crypto_ablkcipher_encrypt crypto_ablkcipher_decrypt
  31. Asynchronous Cipher Request Handle - Deprecated
  32. -----------------------------------------------
  33. .. kernel-doc:: include/linux/crypto.h
  34. :doc: Asynchronous Cipher Request Handle
  35. .. kernel-doc:: include/linux/crypto.h
  36. :functions: crypto_ablkcipher_reqsize ablkcipher_request_set_tfm ablkcipher_request_alloc ablkcipher_request_free ablkcipher_request_set_callback ablkcipher_request_set_crypt
  37. Synchronous Block Cipher API - Deprecated
  38. -----------------------------------------
  39. .. kernel-doc:: include/linux/crypto.h
  40. :doc: Synchronous Block Cipher API
  41. .. kernel-doc:: include/linux/crypto.h
  42. :functions: crypto_alloc_blkcipher crypto_free_blkcipher crypto_has_blkcipher crypto_blkcipher_name crypto_blkcipher_ivsize crypto_blkcipher_blocksize crypto_blkcipher_setkey crypto_blkcipher_encrypt crypto_blkcipher_encrypt_iv crypto_blkcipher_decrypt crypto_blkcipher_decrypt_iv crypto_blkcipher_set_iv crypto_blkcipher_get_iv