struct_aead_request(9) 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 <[email protected]>

Author.

Marek Vasut <[email protected]>

Author.

COPYRIGHT