MLIB
Loading...
Searching...
No Matches
md5.h
Go to the documentation of this file.
1#pragma once
2
4
5/*
6 Copyright (C) 1999, 2002 Aladdin Enterprises. All rights reserved.
7
8 This software is provided 'as-is', without any express or implied
9 warranty. In no event will the authors be held liable for any damages
10 arising from the use of this software.
11
12 Permission is granted to anyone to use this software for any purpose,
13 including commercial applications, and to alter it and redistribute it
14 freely, subject to the following restrictions:
15
16 1. The origin of this software must not be misrepresented; you must not
17 claim that you wrote the original software. If you use this software
18 in a product, an acknowledgment in the product documentation would be
19 appreciated but is not required.
20 2. Altered source versions must be plainly marked as such, and must not be
21 misrepresented as being the original software.
22 3. This notice may not be removed or altered from any source distribution.
23
24 L. Peter Deutsch
25 ghost@aladdin.com
26
27 Independent implementation of MD5 (RFC 1321).
28
29 This code implements the MD5 Algorithm defined in RFC 1321, whose
30 text is available at
31 http://www.ietf.org/rfc/rfc1321.txt
32 The code is derived from the text of the RFC, including the test suite
33 (section A.5) but excluding the rest of Appendix A. It does not include
34 any code or documentation that is identified in the RFC as being
35 copyrighted.
36
37 The original and principal author of md5.h is L. Peter Deutsch
38 <ghost@aladdin.com>. Other authors are noted in the change history
39 that follows (in reverse chronological order):
40
41 2002-04-13 lpd Removed support for non-ANSI compilers; removed
42 references to Ghostscript; clarified derivation from RFC 1321;
43 now handles byte order either statically or dynamically.
44 1999-11-04 lpd Edited comments slightly for automatic TOC extraction.
45 1999-10-18 lpd Fixed typo in header comment (ansi2knr rather than md5);
46 added conditionalization for C++ compilation from Martin
47 Purschke <purschke@bnl.gov>.
48 1999-05-03 lpd Original version.
49 */
50
51/*
52 * This package supports both compile-time and run-time determination of CPU
53 * byte order. If ARCH_IS_BIG_ENDIAN is defined as 0, the code will be
54 * compiled to run only on little-endian CPUs; if ARCH_IS_BIG_ENDIAN is
55 * defined as non-zero, the code will be compiled to run only on big-endian
56 * CPUs; if ARCH_IS_BIG_ENDIAN is not defined, the code will be compiled to
57 * run on either big- or little-endian CPUs, but will run slightly less
58 * efficiently on either one than if ARCH_IS_BIG_ENDIAN is defined.
59 */
60
61
62
63namespace mlib {
64
66class md5
67{
68public:
70 md5 ();
71
73 void append (const BYTE* data, size_t nbytes);
74
76 void finish (BYTE digest[16]);
77
78private:
79 void process (const BYTE* data /*[64]*/);
80 UINT count[2]; /* message length in bits, lsw first */
81 UINT abcd[4]; /* digest buffer */
82 BYTE buf[64]; /* accumulate block */
83};
84
85
86
87} //namespace mlib
void finish(BYTE digest[16])
Finish the message and return the digest.
Definition md5.cpp:367
md5()
Initialize the algorithm.
Definition md5.cpp:322
void append(const BYTE *data, size_t nbytes)
Append a string to the message.
Definition md5.cpp:331