[Ffmpeg-cvslog] r7551 - trunk/libavutil/aes.h

Aurelien Jacobs aurel
Tue Jan 16 21:29:25 CET 2007


On Tue, 16 Jan 2007 20:14:27 +0100 (CET)
michael <subversion at mplayerhq.hu> wrote:

> Author: michael
> Date: Tue Jan 16 20:14:27 2007
> New Revision: 7551
> 
> Modified:
>    trunk/libavutil/aes.h
> 
> Log:
> public API
> 
> 
> Modified: trunk/libavutil/aes.h
> ==============================================================================
> --- trunk/libavutil/aes.h	(original)
> +++ trunk/libavutil/aes.h	Tue Jan 16 20:14:27 2007
> @@ -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);

Shouldn't it be av_aes_crypt to be consistent ?

Aurel




More information about the ffmpeg-cvslog mailing list