Commit 7583bcd5 authored by michael's avatar michael

av_aes_init()


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7521 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 448db711
......@@ -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 */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment