summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/md5.c
AgeCommit message (Collapse)AuthorFilesLines
2007-09-29libalpm: Optimize/inline the md5 functionalityDan McGee1-5/+5
The md5 routines are one of the chokepoints of libalpm (main chokepoint being archive extraction). Although IO delay causes a lot of it, we can at least inline some of the md5 stuff as we aren't that concerned about space and eliminate quite a few function calls. Signed-off-by: Dan McGee <dan@archlinux.org>
2007-08-20Add const qualifier to md5_file and alpm_get_md5sumDan McGee1-1/+5
Signed-off-by: Dan McGee <dan@archlinux.org>
2007-08-16Clean up MD5 code.Andrew Fyfe1-268/+293
* Move alpm md5 functions to lib/libalpm/util.c * Remove unneeded includes for md5.h * Replace md5 implementation with one from http://www.xyssl.org Dan: clean up XySSL code by removing parts we don't use, and add a note saying what changed. Dan: fix alpm_get_md5sum, off by one error on the malloc call and other small things. Signed-off-by: Andrew Fyfe <andrew@neptune-one.net> Signed-off-by: Dan McGee <dan@archlinux.org>
2007-03-05This commit looks much more monumental than it is. Almost all just #includeDan McGee1-0/+1
reordering and adding ones that were forgotten (noticed when trying to compile after reordering). * Updated the HACKING file to include information on #include usage. * print -> vprint in "making dir" function in pactest.
2006-10-15Merged frugalware changes (too many to list). Also added some config fileAaron Griffin1-35/+5
handling changes (support [sections] to carry over to included files - this helps with backwards compatibility with existing pacman config files)
2005-10-18added patch to use the system memcpy for md5 stuffJudd Vinet1-13/+11
2005-03-15Initial revisionJudd Vinet1-0/+338