[Ffmpeg-cvslog] r7521 - trunk/libavutil/aes.h
michael
subversion
Mon Jan 15 01:10:25 CET 2007
Author: michael
Date: Mon Jan 15 01:10:25 2007
New Revision: 7521
Modified:
trunk/libavutil/aes.h
Log:
av_aes_init()
Modified: trunk/libavutil/aes.h
==============================================================================
--- trunk/libavutil/aes.h (original)
+++ trunk/libavutil/aes.h Mon Jan 15 01:10:25 2007
@@ -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 */
More information about the ffmpeg-cvslog
mailing list