FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions
aes_ctr.c File Reference
#include "common.h"
#include "aes_ctr.h"
#include "aes.h"
#include "random_seed.h"

Go to the source code of this file.

Data Structures

struct  AVAESCTR
 

Macros

#define AES_BLOCK_SIZE   (16)
 

Functions

struct AVAESCTRav_aes_ctr_alloc (void)
 Allocate an AVAESCTR context. More...
 
void av_aes_ctr_set_iv (struct AVAESCTR *a, const uint8_t *iv)
 Forcefully change the iv. More...
 
const uint8_tav_aes_ctr_get_iv (struct AVAESCTR *a)
 Get the current iv. More...
 
void av_aes_ctr_set_random_iv (struct AVAESCTR *a)
 Generate a random iv. More...
 
int av_aes_ctr_init (struct AVAESCTR *a, const uint8_t *key)
 Initialize an AVAESCTR context. More...
 
void av_aes_ctr_free (struct AVAESCTR *a)
 Release an AVAESCTR context. More...
 
static void av_aes_ctr_increment_be64 (uint8_t *counter)
 
void av_aes_ctr_increment_iv (struct AVAESCTR *a)
 Increment the top 64 bit of the iv (performed after each frame) More...
 
void av_aes_ctr_crypt (struct AVAESCTR *a, uint8_t *dst, const uint8_t *src, int count)
 Process a buffer using a previously initialized context. More...
 

Macro Definition Documentation

#define AES_BLOCK_SIZE   (16)

Definition at line 27 of file aes_ctr.c.

Referenced by av_aes_ctr_crypt().

Function Documentation

struct AVAESCTR* av_aes_ctr_alloc ( void  )

Allocate an AVAESCTR context.

Definition at line 36 of file aes_ctr.c.

Referenced by ff_mov_cenc_init(), and mov_read_senc().

void av_aes_ctr_set_iv ( struct AVAESCTR a,
const uint8_t iv 
)

Forcefully change the iv.

Definition at line 41 of file aes_ctr.c.

Referenced by av_aes_ctr_set_random_iv(), and cenc_filter().

const uint8_t* av_aes_ctr_get_iv ( struct AVAESCTR a)

Get the current iv.

Definition at line 48 of file aes_ctr.c.

Referenced by mov_cenc_start_packet().

void av_aes_ctr_set_random_iv ( struct AVAESCTR a)

Generate a random iv.

Definition at line 53 of file aes_ctr.c.

Referenced by ff_mov_cenc_init().

int av_aes_ctr_init ( struct AVAESCTR a,
const uint8_t key 
)

Initialize an AVAESCTR context.

Parameters
keyencryption key, must have a length of AES_CTR_KEY_SIZE

Definition at line 63 of file aes_ctr.c.

Referenced by ff_mov_cenc_init(), and mov_read_senc().

void av_aes_ctr_free ( struct AVAESCTR a)

Release an AVAESCTR context.

Definition at line 78 of file aes_ctr.c.

Referenced by ff_mov_cenc_free(), and mov_read_close().

static void av_aes_ctr_increment_be64 ( uint8_t counter)
static

Definition at line 86 of file aes_ctr.c.

Referenced by av_aes_ctr_crypt(), and av_aes_ctr_increment_iv().

void av_aes_ctr_increment_iv ( struct AVAESCTR a)

Increment the top 64 bit of the iv (performed after each frame)

Definition at line 98 of file aes_ctr.c.

Referenced by mov_cenc_end_packet().

void av_aes_ctr_crypt ( struct AVAESCTR a,
uint8_t dst,
const uint8_t src,
int  size 
)

Process a buffer using a previously initialized context.

Parameters
dstdestination array, can be equal to src
srcsource array, can be equal to dst
sizethe size of src and dst

Definition at line 105 of file aes_ctr.c.

Referenced by cenc_filter(), and mov_cenc_write_encrypted().