12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #ifndef AVUTIL_TWOFISH_H
- #define AVUTIL_TWOFISH_H
- #include <stdint.h>
- extern const int av_twofish_size;
- struct AVTWOFISH;
- struct AVTWOFISH *av_twofish_alloc(void);
- int av_twofish_init(struct AVTWOFISH *ctx, const uint8_t *key, int key_bits);
- void av_twofish_crypt(struct AVTWOFISH *ctx, uint8_t *dst, const uint8_t *src, int count, uint8_t* iv, int decrypt);
- #endif
|