FFmpeg 5.1.4
Functions | Variables

Functions

struct AVAES * av_aes_alloc (void)
 Allocate an AVAES context. More...
 
int av_aes_init (struct AVAES *a, const uint8_t *key, int key_bits, int decrypt)
 Initialize an AVAES context. More...
 
void av_aes_crypt (struct AVAES *a, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt)
 Encrypt or decrypt a buffer using a previously initialized context. More...
 

Variables

const int av_aes_size
 

Detailed Description

Function Documentation

◆ av_aes_alloc()

struct AVAES * av_aes_alloc ( void  )

Allocate an AVAES context.

◆ av_aes_init()

int av_aes_init ( struct AVAES *  a,
const uint8_t *  key,
int  key_bits,
int  decrypt 
)

Initialize an AVAES context.

Parameters
key_bits128, 192 or 256
decrypt0 for encryption, 1 for decryption

◆ av_aes_crypt()

void av_aes_crypt ( struct AVAES *  a,
uint8_t *  dst,
const uint8_t *  src,
int  count,
uint8_t *  iv,
int  decrypt 
)

Encrypt or decrypt a buffer using a previously initialized context.

Parameters
countnumber of 16 byte blocks
dstdestination array, can be equal to src
srcsource array, can be equal to dst
ivinitialization vector for CBC mode, if NULL then ECB will be used
decrypt0 for encryption, 1 for decryption

Variable Documentation

◆ av_aes_size

const int av_aes_size
extern