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