12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #ifndef AVUTIL_CAMELLIA_H
- #define AVUTIL_CAMELLIA_H
- #include <stdint.h>
- extern const int av_camellia_size;
- struct AVCAMELLIA;
- struct AVCAMELLIA *av_camellia_alloc(void);
- int av_camellia_init(struct AVCAMELLIA *ctx, const uint8_t *key, int key_bits);
- void av_camellia_crypt(struct AVCAMELLIA *ctx, uint8_t *dst, const uint8_t *src, int count, uint8_t* iv, int decrypt);
- #endif
|