22 #ifndef AVUTIL_CAMELLIA_H 23 #define AVUTIL_CAMELLIA_H 36 extern const int av_camellia_size;
struct AVCAMELLIA * av_camellia_alloc(void)
Allocate an AVCAMELLIA context To free the struct: av_free(ptr)
Definition: camellia.c:347
void av_camellia_crypt(struct AVCAMELLIA *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.
Definition: camellia.c:393
int av_camellia_init(struct AVCAMELLIA *ctx, const uint8_t *key, int key_bits)
Initialize an AVCAMELLIA context.
Definition: camellia.c:352
Definition: camellia.c:42