summaryrefslogtreecommitdiff
path: root/libavutil/rc4.c
Commit message (Collapse)AuthorAge
* avutil: use EINVAL instead of -1 for the return code of crypto related init ↵Ganesh Ajjanagadde2015-10-18
| | | | | | | | | | | 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 <rsbultje@gmail.com> Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
* avutil: undo FF_API_CRYPTO_CONTEXT deprecationJames Almer2015-10-16
| | | | | | | | | | 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 <rsbultje@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
* Merge commit 'ae365453c370c85f278bff7fbf9e20d9d335cb2a'Hendrik Leppkes2015-08-02
|\ | | | | | | | | | | | | * commit 'ae365453c370c85f278bff7fbf9e20d9d335cb2a': rc4: add av_rc4_alloc() Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
| * rc4: add av_rc4_alloc()James Almer2015-07-31
| | | | | | | | | | Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
|/ | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Remove more functions disabled by major version bump.Reimar Döffinger2009-03-08
| | | | 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-03
| | | | Originally committed as revision 16970 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Consistently place comments in file header.Diego Biurrun2007-10-14
| | | | Originally committed as revision 10730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add RC4 encryption/decryption functionReimar Döffinger2007-10-13
Originally committed as revision 10723 to svn://svn.ffmpeg.org/ffmpeg/trunk