CMS 3D CMS Logo

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