FFmpeg
|
Functions | |
struct AVTEA * | av_tea_alloc (void) |
Allocate an AVTEA context To free the struct: av_free(ptr) More... | |
void | av_tea_init (struct AVTEA *ctx, const uint8_t key[16], int rounds) |
Initialize an AVTEA context. More... | |
void | av_tea_crypt (struct AVTEA *ctx, 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_tea_size |
struct AVTEA* av_tea_alloc | ( | void | ) |
Allocate an AVTEA context To free the struct: av_free(ptr)
Definition at line 35 of file tea.c.
Referenced by aa_read_header(), and main().
void av_tea_init | ( | struct AVTEA * | ctx, |
const uint8_t | key[16], | ||
int | rounds | ||
) |
void av_tea_crypt | ( | struct AVTEA * | ctx, |
uint8_t * | dst, | ||
const uint8_t * | src, | ||
int | count, | ||
uint8_t * | iv, | ||
int | decrypt | ||
) |
Encrypt or decrypt a buffer using a previously initialized context.
ctx | an AVTEA context |
dst | destination array, can be equal to src |
src | source array, can be equal to dst |
count | number of 8 byte blocks |
iv | initialization vector for CBC mode, if NULL then ECB will be used |
decrypt | 0 for encryption, 1 for decryption |
Definition at line 95 of file tea.c.
Referenced by aa_read_header(), aa_read_packet(), main(), and test_tea().