1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

av_aes_init()

Originally committed as revision 7521 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2007-01-15 00:10:25 +00:00
parent 6287dc9aae
commit f32f5122ce

View File

@ -23,4 +23,11 @@
struct AVAES;
/**
* creates a AVAES context, which can be freed with av_free()
* @param key_bits 128, 192 or 256
* @param decrypt 0 for encryption, 1 for decryption
*/
struct AVAES *av_aes_init(uint8_t *key, int key_bits, int decrypt);
#endif /* AES_H */