summaryrefslogtreecommitdiffstats
path: root/libavutil/rc4.c
Commit message (Collapse)AuthorAgeFilesLines
* avutil: use EINVAL instead of -1 for the return code of crypto related init ↵Ganesh Ajjanagadde2015-10-181-1/+1
| | | | | | | | | | | functions These functions return an error typically when the key size is an incorrect number. AVERROR(EINVAL) is more specific than -1. Reviewed-by: Ronald S. Bultje <[email protected]> Reviewed-by: Michael Niedermayer <[email protected]> Signed-off-by: Ganesh Ajjanagadde <[email protected]>
* avutil: undo FF_API_CRYPTO_CONTEXT deprecationJames Almer2015-10-161-7/+0
| | | | | | | | | | It's been argued that the benefits of the current implementation far outweight those of making the structs opaque. This deprecation is not present in any release, so it can be safely removed. Reviewed-by: Ronald S. Bultje <[email protected]> Signed-off-by: James Almer <[email protected]>
* Merge commit 'ae365453c370c85f278bff7fbf9e20d9d335cb2a'Hendrik Leppkes2015-08-021-1/+12
|\ | | | | | | | | | | | | * commit 'ae365453c370c85f278bff7fbf9e20d9d335cb2a': rc4: add av_rc4_alloc() Merged-by: Hendrik Leppkes <[email protected]>
| * rc4: add av_rc4_alloc()James Almer2015-07-311-1/+12
| | | | | | | | | | Signed-off-by: James Almer <[email protected]> Signed-off-by: Anton Khirnov <[email protected]>
| * Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-191-4/+4
|/ | | | Signed-off-by: Mans Rullgard <[email protected]>
* Remove more functions disabled by major version bump.Reimar Döffinger2009-03-081-8/+0
| | | | Originally committed as revision 17876 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add and use a public API for RC4 and DES, analogous to the AES API.Reimar Döffinger2009-02-031-7/+28
| | | | Originally committed as revision 16970 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Consistently place comments in file header.Diego Biurrun2007-10-141-2/+2
| | | | Originally committed as revision 10730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add RC4 encryption/decryption functionReimar Döffinger2007-10-131-0/+48
Originally committed as revision 10723 to svn://svn.ffmpeg.org/ffmpeg/trunk