blob: 78a7ce48a331e5ff7fc307944457b12d8e79b4bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
Authenticated Encryption With Associated Data (AEAD) Algorithm Definitions
--------------------------------------------------------------------------
.. kernel-doc:: include/crypto/aead.h
:doc: Authenticated Encryption With Associated Data (AEAD) Cipher API
.. kernel-doc:: include/crypto/aead.h
:functions: aead_request
.. kernel-doc:: include/crypto/aead.h
:functions: aead_alg
Authenticated Encryption With Associated Data (AEAD) Cipher API
---------------------------------------------------------------
.. kernel-doc:: include/crypto/aead.h
:functions: crypto_alloc_aead
.. kernel-doc:: include/crypto/aead.h
:functions: crypto_free_aead
.. kernel-doc:: include/crypto/aead.h
:functions: crypto_aead_ivsize
.. kernel-doc:: include/crypto/aead.h
:functions: crypto_aead_authsize
.. kernel-doc:: include/crypto/aead.h
:functions: crypto_aead_blocksize
.. kernel-doc:: include/crypto/aead.h
:functions: crypto_aead_setkey
.. kernel-doc:: include/crypto/aead.h
:functions: crypto_aead_setauthsize
.. kernel-doc:: include/crypto/aead.h
:functions: crypto_aead_encrypt
.. kernel-doc:: include/crypto/aead.h
:functions: crypto_aead_decrypt
Asynchronous AEAD Request Handle
--------------------------------
.. kernel-doc:: include/crypto/aead.h
:doc: Asynchronous AEAD Request Handle
.. kernel-doc:: include/crypto/aead.h
:functions: crypto_aead_reqsize
.. kernel-doc:: include/crypto/aead.h
:functions: aead_request_set_tfm
.. kernel-doc:: include/crypto/aead.h
:functions: aead_request_alloc
.. kernel-doc:: include/crypto/aead.h
:functions: aead_request_free
.. kernel-doc:: include/crypto/aead.h
:functions: aead_request_set_callback
.. kernel-doc:: include/crypto/aead.h
:functions: aead_request_set_crypt
.. kernel-doc:: include/crypto/aead.h
:functions: aead_request_set_ad
|