mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
public API
Originally committed as revision 7551 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
97e3458c46
commit
6eb7df5c6d
@ -32,4 +32,14 @@ struct AVAES;
|
||||
*/
|
||||
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 */
|
||||
|
Loading…
Reference in New Issue
Block a user