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 * assoc;
  struct scatterlist * src;
  struct scatterlist * dst;
  void * __ctx[] CRYPTO_MINALIGN_ATTR;
};  

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

assoc

Associated data

src

Source data

dst

Destination data

__ctx[] CRYPTO_MINALIGN_ATTR

Start of private context data