summaryrefslogtreecommitdiff
path: root/libavutil/sha1.c
Commit message (Collapse)AuthorAge
* spelling/grammar/consistency review part IDiego Biurrun2009-01-28
| | | | Originally committed as revision 16840 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove misleading comment about how to build SHA1 test program.Diego Biurrun2009-01-26
| | | | | | Generating the test program is integrated into the build system already. Originally committed as revision 16804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-13
| | | | | | They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Missing const found by -Wwrite-strings.Michael Niedermayer2008-02-03
| | | | Originally committed as revision 11838 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill a warning, av_sha1_update accepts uint8_t * not uint64_t *Luca Barbato2007-12-12
| | | | Originally committed as revision 11208 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Provide sha1 to outside applicationsLuca Barbato2007-12-12
| | | | | | Patch from Diego Pettenò flameeyesATgmailDOTcom Originally committed as revision 11207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* main() --> main(void)Diego Biurrun2007-11-23
| | | | Originally committed as revision 11079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add proper license header.Diego Biurrun2007-06-27
| | | | Originally committed as revision 9444 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add missing include of bswap.hAttila Kinali2007-04-27
| | | | Originally committed as revision 8853 to svn://svn.ffmpeg.org/ffmpeg/trunk
* s/context/ctx/Michael Niedermayer2007-03-13
| | | | Originally committed as revision 8385 to svn://svn.ffmpeg.org/ffmpeg/trunk
* smaller av_sha1_update()Michael Niedermayer2007-03-13
| | | | Originally committed as revision 8381 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use CONFIG_SMALLMichael Niedermayer2007-03-13
| | | | Originally committed as revision 8380 to svn://svn.ffmpeg.org/ffmpeg/trunk
* put state[5] last so no padding is needed on arch where uint64_t needs 8byte ↵Michael Niedermayer2007-03-13
| | | | | | alignment Originally committed as revision 8379 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmeticMichael Niedermayer2007-03-13
| | | | Originally committed as revision 8378 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont memcpy() simpler and same speedMichael Niedermayer2007-03-13
| | | | Originally committed as revision 8377 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2007-03-13
| | | | Originally committed as revision 8376 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove middle variant (keep fastest and smallest)Michael Niedermayer2007-03-13
| | | | Originally committed as revision 8375 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10lMichael Niedermayer2007-03-13
| | | | Originally committed as revision 8374 to svn://svn.ffmpeg.org/ffmpeg/trunk
* double ;;Michael Niedermayer2007-03-13
| | | | Originally committed as revision 8373 to svn://svn.ffmpeg.org/ffmpeg/trunk
* factorize VARIANT2 (smaller and slower)Michael Niedermayer2007-03-13
| | | | Originally committed as revision 8372 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert 2% speed loss change (r8360)Michael Niedermayer2007-03-13
| | | | | | so VARIANT0 will be big and a few % faster, VARIANT1/2 are unaffected Originally committed as revision 8371 to svn://svn.ffmpeg.org/ffmpeg/trunk
* zero byte idea by richMichael Niedermayer2007-03-13
| | | | Originally committed as revision 8368 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 2 other variants of how to implement the core partMichael Niedermayer2007-03-13
| | | | | | benchmarks welcome ... Originally committed as revision 8367 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic cleanupMichael Niedermayer2007-03-12
| | | | Originally committed as revision 8362 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic cleanupMichael Niedermayer2007-03-12
| | | | Originally committed as revision 8361 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10% smaller object file, 2% slowerMichael Niedermayer2007-03-12
| | | | Originally committed as revision 8360 to svn://svn.ffmpeg.org/ffmpeg/trunk
* very slightly smaller object fileMichael Niedermayer2007-03-12
| | | | Originally committed as revision 8358 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make count count bytes not bits (this is simpler and leads to a very ↵Michael Niedermayer2007-03-12
| | | | | | slightly smaller object file) Originally committed as revision 8357 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove bigger and slower codeMichael Niedermayer2007-03-12
| | | | Originally committed as revision 8356 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont recommand testing with -O3Michael Niedermayer2007-03-12
| | | | Originally committed as revision 8355 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid silly ring buffer logic (faster with -O2, -O3 is always slower then -O2)Michael Niedermayer2007-03-12
| | | | Originally committed as revision 8354 to svn://svn.ffmpeg.org/ffmpeg/trunk
* its faster to copy the data to the stack it seems ...Michael Niedermayer2007-03-12
| | | | Originally committed as revision 8353 to svn://svn.ffmpeg.org/ffmpeg/trunk
* explain how to test itMichael Niedermayer2007-03-12
| | | | Originally committed as revision 8352 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simple SHA-1 implementationMichael Niedermayer2007-03-12
Originally committed as revision 8351 to svn://svn.ffmpeg.org/ffmpeg/trunk