other versions
STRUCT AEAD_REQUEST(9) | Programming Interface | STRUCT AEAD_REQUEST(9) |
NAME¶
struct_aead_request - AEAD request
SYNOPSIS¶
struct aead_request {
struct crypto_async_request base;
unsigned int assoclen;
unsigned int cryptlen;
u8 * iv;
struct scatterlist * src;
struct scatterlist * dst;
void * __ctx[]; };
MEMBERS¶
base
Common attributes for async crypto requests
assoclen
Length in bytes of associated data for
authentication
cryptlen
Length of data to be encrypted or decrypted
iv
Initialisation vector
src
Source data
dst
Destination data
__ctx[]
Start of private context data
AUTHORS¶
Stephan Mueller <smueller@chronox.de>
Author.
Marek Vasut <marek@denx.de>
Author.
COPYRIGHT¶
June 2017 | Kernel Hackers Manual 4.9. |