Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/md5.c
AgeCommit message (Collapse)Author
2017-03-20md5: add "const" qualifier to the "file" argumentYousong Zhou
This is intended to fix the following compiler warning in opkg-lede: /home/yousong/git-repo/lede-project/opkg-lede/libopkg/file_util.c: In function ‘file_md5sum_alloc’: /home/yousong/git-repo/lede-project/opkg-lede/libopkg/file_util.c:144:2: warning: passing argument 1 of ‘md5sum’ discards ‘const’ qualifier from pointer target type [enabled by default] In file included from /home/yousong/git-repo/lede-project/opkg-lede/libopkg/file_util.c:28:0: /home/yousong/.usr/include/libubox/md5.h:56:5: note: expected ‘char *’ but argument is of type ‘const char *’ Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2015-06-29md5: include utils.h instead of endian.h to fix portability issuesFelix Fietkau
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
2015-06-29md5: include endian.h for musl, otherwise hashes are invalid for BESteven Barth
Signed-off-by: Steven Barth <steven@midlink.org>
2014-10-01md5: add a new implementation under permissive licenseFelix Fietkau
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
2014-04-12md5: remove unnecessary variable changeFelix Fietkau
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
2013-11-20fix memset call in md5.cJohn Crispin
Signed-off-by: John Crispin <blogic@openwrt.org>
2013-11-19add md5.c to libuboxJohn Crispin
Signed-off-by: John Crispin <blogic@openwrt.org>