Rafał Miłecki cb7ab730c7 firmware-utils: replace md5 code with Alexander Peslyak's implementation
Our current implementation is pretty old and uses some pre-standard/old
ANSI C style that triggers warnings like:
warning: call to function 'MD5_Init' without a real prototype [-Wunprototyped-calls]

This is caused by declarations specified in a following way:
src/md5.h:60:6: note: 'MD5_Init' was declared here
 void MD5_Init ();

Having these warnings makes it harded to notice real problems. We could
try hiding them but it makes more sense to just use a cleaner code.
Another tiny gain from this switch is slightly reduced binary size, on
x86_64 tplink-safeloader's size 48104 became 48003.

The new code is public domain, uses "heavily cut-down BSD license".

Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
2016-11-28 07:52:31 +01:00
..
2015-03-24 13:13:01 +00:00
2015-06-06 13:48:57 +00:00
2015-11-03 12:00:04 +00:00
2013-12-15 21:07:32 +00:00
2016-11-26 21:59:40 +01:00
2016-10-04 11:50:47 +02:00
2016-03-16 09:26:51 +00:00
2016-08-15 15:32:37 +02:00
2016-07-15 14:17:16 +02:00
2016-08-04 18:19:46 +02:00
2015-02-06 00:00:43 +00:00
2016-03-10 19:11:32 +00:00
2015-11-03 11:59:35 +00:00
2015-10-11 16:23:11 +00:00
2015-09-26 21:10:37 +00:00
2016-10-04 11:50:47 +02:00
2015-02-06 00:00:43 +00:00
2016-11-26 21:59:40 +01:00
2016-11-26 21:59:40 +01:00
2015-05-04 13:22:17 +00:00
2015-12-11 15:07:28 +00:00
2016-10-06 14:12:46 +02:00