From a628a05efb8a32e4d696960121ed13f274a2a907 Mon Sep 17 00:00:00 2001 From: cpq Date: Fri, 29 Sep 2023 13:09:29 +0100 Subject: [PATCH] Restore pub. domain notice --- mongoose.c | 15 +++++++++++++++ src/md5.c | 15 +++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/mongoose.c b/mongoose.c index 0930d481..2a52032d 100644 --- a/mongoose.c +++ b/mongoose.c @@ -3273,6 +3273,21 @@ void mg_hexdump(const void *buf, size_t len) { +// This code implements the MD5 message-digest algorithm. +// The algorithm is due to Ron Rivest. This code was +// written by Colin Plumb in 1993, no copyright is claimed. +// This code is in the public domain; do with it what you wish. +// +// Equivalent code is available from RSA Data Security, Inc. +// This code has been tested against that, and is equivalent, +// except that you don't need to include two pages of legalese +// with every copy. +// +// To compute the message digest of a chunk of bytes, declare an +// MD5Context structure, pass it to MD5Init, call MD5Update as +// needed on buffers full of bytes, and then call MD5Final, which +// will fill a supplied 16-byte array with the digest. + #if defined(MG_ENABLE_MD5) && MG_ENABLE_MD5 static void mg_byte_reverse(unsigned char *buf, unsigned longs) { diff --git a/src/md5.c b/src/md5.c index 5d8dca26..f34bcecf 100644 --- a/src/md5.c +++ b/src/md5.c @@ -1,6 +1,21 @@ #include "arch.h" #include "md5.h" +// This code implements the MD5 message-digest algorithm. +// The algorithm is due to Ron Rivest. This code was +// written by Colin Plumb in 1993, no copyright is claimed. +// This code is in the public domain; do with it what you wish. +// +// Equivalent code is available from RSA Data Security, Inc. +// This code has been tested against that, and is equivalent, +// except that you don't need to include two pages of legalese +// with every copy. +// +// To compute the message digest of a chunk of bytes, declare an +// MD5Context structure, pass it to MD5Init, call MD5Update as +// needed on buffers full of bytes, and then call MD5Final, which +// will fill a supplied 16-byte array with the digest. + #if defined(MG_ENABLE_MD5) && MG_ENABLE_MD5 static void mg_byte_reverse(unsigned char *buf, unsigned longs) {