1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- #ifndef AVUTIL_TEA_H
- #define AVUTIL_TEA_H
- #include <stdint.h>
- extern const int av_tea_size;
- struct AVTEA;
- struct AVTEA *av_tea_alloc(void);
- 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);
- #endif
|