MongoDB C++ Driver legacy-1.1.2
Loading...
Searching...
No Matches
md5.h
1/*
2 Copyright (C) 1999, 2002 Aladdin Enterprises. All rights reserved.
3
4 This software is provided 'as-is', without any express or implied
5 warranty. In no event will the authors be held liable for any damages
6 arising from the use of this software.
7
8 Permission is granted to anyone to use this software for any purpose,
9 including commercial applications, and to alter it and redistribute it
10 freely, subject to the following restrictions:
11
12 1. The origin of this software must not be misrepresented; you must not
13 claim that you wrote the original software. If you use this software
14 in a product, an acknowledgment in the product documentation would be
15 appreciated but is not required.
16 2. Altered source versions must be plainly marked as such, and must not be
17 misrepresented as being the original software.
18 3. This notice may not be removed or altered from any source distribution.
19
20 L. Peter Deutsch
21 ghost@aladdin.com
22
23 */
24
25/*
26 NOTE: Per restriction 2 above, this file has been altered by MongoDB as follows:
27
28 1. The functions md5_init, md5_append, and md5_finish have been moved into the 'mongo'
29 namespace and given C++ linkage, so that static archives of this library may be combined
30 with other libraries that expose functions of the same name.
31*/
32
33/* $Id: md5.h,v 1.4 2002/04/13 19:20:28 lpd Exp $ */
34/*
35 Independent implementation of MD5 (RFC 1321).
36
37 This code implements the MD5 Algorithm defined in RFC 1321, whose
38 text is available at
39 http://www.ietf.org/rfc/rfc1321.txt
40 The code is derived from the text of the RFC, including the test suite
41 (section A.5) but excluding the rest of Appendix A. It does not include
42 any code or documentation that is identified in the RFC as being
43 copyrighted.
44
45 The original and principal author of md5.h is L. Peter Deutsch
46 <ghost@aladdin.com>. Other authors are noted in the change history
47 that follows (in reverse chronological order):
48
49 2002-04-13 lpd Removed support for non-ANSI compilers; removed
50 references to Ghostscript; clarified derivation from RFC 1321;
51 now handles byte order either statically or dynamically.
52 1999-11-04 lpd Edited comments slightly for automatic TOC extraction.
53 1999-10-18 lpd Fixed typo in header comment (ansi2knr rather than md5);
54 added conditionalization for C++ compilation from Martin
55 Purschke <purschke@bnl.gov>.
56 1999-05-03 lpd Original version.
57 */
58
59#ifndef md5_INCLUDED
60#define md5_INCLUDED
61
62/*
63 * This package supports both compile-time and run-time determination of CPU
64 * byte order. If ARCH_IS_BIG_ENDIAN is defined as 0, the code will be
65 * compiled to run only on little-endian CPUs; if ARCH_IS_BIG_ENDIAN is
66 * defined as non-zero, the code will be compiled to run only on big-endian
67 * CPUs; if ARCH_IS_BIG_ENDIAN is not defined, the code will be compiled to
68 * run on either big- or little-endian CPUs, but will run slightly less
69 * efficiently on either one than if ARCH_IS_BIG_ENDIAN is defined.
70 */
71
72// Don't do this. Turns out its actually slower...
73// #define ARCH_IS_BIG_ENDIAN 0
74
75typedef unsigned char md5_byte_t; /* 8-bit byte */
76typedef unsigned int md5_word_t; /* 32-bit word */
77
78/* Define the state of the MD5 Algorithm. */
79typedef struct md5_state_s {
80 md5_word_t count[2]; /* message length in bits, lsw first */
81 md5_word_t abcd[4]; /* digest buffer */
82 md5_byte_t buf[64]; /* accumulate block */
84
85namespace mongo {
86
87/* Initialize the algorithm. */
88void md5_init(md5_state_t* pms);
89
90/* Append a string to the message. */
91void md5_append(md5_state_t* pms, const md5_byte_t* data, int nbytes);
92
93/* Finish the message and return the digest. */
94void md5_finish(md5_state_t* pms, md5_byte_t digest[16]);
95
96} // namespace mongo
97
98#endif /* md5_INCLUDED */
Utility functions for parsing numbers from strings.
Definition compare_numbers.h:20
Definition md5.h:79