Add support for 3DES to DES module

Originally committed as revision 16971 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reimar Döffinger
2009-02-03 16:45:42 +00:00
parent 1a534c7f1e
commit bc17cc01ed
2 changed files with 15 additions and 3 deletions

View File

@@ -32,7 +32,7 @@ struct AVDES {
/**
* \brief Initializes an AVDES context.
*
* \param key_bits must be 64
* \param key_bits must be 64 or 192
* \param decrypt 0 for encryption, 1 for decryption
*/
int av_des_init(struct AVDES *d, const uint8_t *key, int key_bits, int decrypt);