FFmpeg
|
Collaboration diagram for XTEA:
Data Structures | |
struct | AVXTEA |
Typedefs | |
typedef struct AVXTEA | AVXTEA |
Functions | |
void | av_xtea_init (struct AVXTEA *ctx, const uint8_t key[16]) |
Initialize an AVXTEA context. More... | |
void | av_xtea_crypt (struct AVXTEA *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... | |
Detailed Description
Typedef Documentation
Function Documentation
void av_xtea_crypt | ( | struct AVXTEA * | 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.
- Parameters
-
ctx an AVXTEA 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 158 of file xtea.c.
Referenced by av_xtea_crypt(), and rtmpe8_sig().
Initialize an AVXTEA context.
- Parameters
-
ctx an AVXTEA context key a key of 16 bytes used for encryption/decryption
Definition at line 30 of file xtea.c.
Referenced by av_xtea_crypt(), and rtmpe8_sig().
Generated on Mon Nov 18 2024 06:52:10 for FFmpeg by 1.8.11