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