Mercurial > libavutil.hg
changeset 217:10fffb98ff76 libavutil
public API
author | michael |
---|---|
date | Tue, 16 Jan 2007 19:14:27 +0000 |
parents | 1c3c3b1b9596 |
children | 494f87dd50fa |
files | aes.h |
diffstat | 1 files changed, 10 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/aes.h Tue Jan 16 19:08:52 2007 +0000 +++ b/aes.h Tue Jan 16 19:14:27 2007 +0000 @@ -32,4 +32,14 @@ */ 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 */