FFmpeg
|
XTEA 32-bit implementation. More...
Go to the source code of this file.
Macros | |
#define | DSTEP(SUM, K0, K1) |
#define | ESTEP(SUM, K0, K1) |
Functions | |
void | av_xtea_init (AVXTEA *ctx, const uint8_t key[16]) |
Initialize an AVXTEA context. More... | |
static void | xtea_crypt_ecb (AVXTEA *ctx, uint8_t *dst, const uint8_t *src, int decrypt, uint8_t *iv) |
void | av_xtea_crypt (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... | |
XTEA 32-bit implementation.
Definition in file xtea.c.
#define DSTEP | ( | SUM, | |
K0, | |||
K1 | |||
) |
Referenced by xtea_crypt_ecb().
#define ESTEP | ( | SUM, | |
K0, | |||
K1 | |||
) |
Referenced by xtea_crypt_ecb().