Commit 23c33b85 authored by michael's avatar michael

public API


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7551 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 60c83faf
...@@ -32,4 +32,14 @@ struct AVAES; ...@@ -32,4 +32,14 @@ struct AVAES;
*/ */
int av_aes_init(struct AVAES *a, uint8_t *key, int key_bits, int decrypt); int av_aes_init(struct AVAES *a, uint8_t *key, int key_bits, int decrypt);
/**
* encrypts / decrypts.
* @param count number of 16 byte blocks
* @param dst destination array, can be equal to src
* @param src source array, can be equal to dst
* @param iv initalization vector for CBC mode, if NULL then ECB will be used
* @param decrypt 0 for encryption, 1 for decryption
*/
void aes_crypt(AVAES *a, uint8_t *dst, uint8_t *src, int count, uint8_t *iv, int decrypt);
#endif /* AES_H */ #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