summaryrefslogtreecommitdiff
path: root/libavutil/cast5.c
Commit message (Collapse)AuthorAge
* Remove unnecessary libavutil/(avutil|common|internal).h inclusionsAndreas Rheinhardt2022-02-24
| | | | | | | | | | Some of these were made possible by moving several common macros to libavutil/macros.h. While just at it, also improve the other headers a bit. Reviewed-by: Martin Storsjö <martin@martin.st> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* Merge commit 'd12b5b2f135aade4099f4b26b0fe678656158c13'Derek Buitenhuis2016-05-11
| | | | | | | | * commit 'd12b5b2f135aade4099f4b26b0fe678656158c13': build: Split test programs off into separate files Some conversions done by: James Almer <jamrial@gmail.com> Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* 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/cast5: Make iv array staticMichael Niedermayer2015-05-02
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avutil/cast5: Mark key_bits as constMichael Niedermayer2015-05-02
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* libavutil: Added cbc mode to cast128Supraja Meedinti2014-12-19
| | | | | | Signed-off-by: Supraja Meedinti <supraja0493@gmail.com> Previous version reviewed-by: Giorgio Vazzana <mywing81@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* libavutil: cosmetic: inserted spaces wherever necessarySupraja Meedinti2014-12-17
| | | | | Signed-off-by: Supraja Meedinti <supraja0493@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avutil/cast5: Fix off by one errorMichael Niedermayer2014-10-20
| | | | | | Fixes fate-cast5 on alpha Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* libavutil: Add missing av_free() to cast5 selftestGiorgio Vazzana2014-10-18
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* libavutil: Add CAST128 symmetric block cipherSupraja Meedinti2014-10-18
Only ECB mode is supported at the moment Signed-off-by: Supraja Meedinti <supraja0493@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>