struct_aead_request (9) - Linux Manuals
struct_aead_request: AEAD request
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 [at] chronox.de>
- Author.
Marek Vasut <marek [at] denx.de>
- Author.
COPYRIGHT