~drizzle-trunk/drizzle/development

1548.2.1 by Barry.Leslie at PrimeBase
Added the PBMS daemon plugin.
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
/* $Id: md5.h,v 1.4 2002/04/13 19:20:28 lpd Exp $ */
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
/* Copyright (c) 2008 PrimeBase Technologies GmbH, Germany
51
 *
52
 * PrimeBase S3Daemon
53
 *
54
 * This program is free software; you can redistribute it and/or modify
55
 * it under the terms of the GNU General Public License as published by
56
 * the Free Software Foundation; either version 2 of the License, or
57
 * (at your option) any later version.
58
 *
59
 * This program is distributed in the hope that it will be useful,
60
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
61
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
62
 * GNU General Public License for more details.
63
 *
64
 * You should have received a copy of the GNU General Public License
65
 * along with this program; if not, write to the Free Software
1802.10.2 by Monty Taylor
Update all of the copyright headers to include the correct address.
66
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1548.2.1 by Barry.Leslie at PrimeBase
Added the PBMS daemon plugin.
67
 *
68
 *  Modified by Barry Leslie on 10/17/08.
69
 *	I have put a C++ wrapper around the data and functions to create an Md5 class.
70
 *
71
 */
72
#ifndef md5_INCLUDED
1841.1.3 by Barry.Leslie at PrimeBase
Merged changes from lp:pbms. These changes should remove any danger
73
#define md5_INCLUDED
74
1548.2.1 by Barry.Leslie at PrimeBase
Added the PBMS daemon plugin.
75
#include <string.h>
76
1841.1.3 by Barry.Leslie at PrimeBase
Merged changes from lp:pbms. These changes should remove any danger
77
#include "CSDefs.h"
78
1548.2.1 by Barry.Leslie at PrimeBase
Added the PBMS daemon plugin.
79
/* Define the state of the MD5 Algorithm. */
80
typedef unsigned int md5_word_t;
81
1841.1.3 by Barry.Leslie at PrimeBase
Merged changes from lp:pbms. These changes should remove any danger
82
#define MD5_CHECKSUM_SIZE			CHECKSUM_VALUE_SIZE
83
#define MD5_CHECKSUM_STRING_SIZE	(CHECKSUM_VALUE_SIZE * 2 + 1)
1548.2.1 by Barry.Leslie at PrimeBase
Added the PBMS daemon plugin.
84
85
class CSMd5 {
86
	private:
87
	struct md5_state_s {
1841.1.3 by Barry.Leslie at PrimeBase
Merged changes from lp:pbms. These changes should remove any danger
88
		md5_word_t	count[2];		/* message length in bits, lsw first */
89
		md5_word_t	abcd[4];		/* digest buffer */
90
		u_char		buf[64];		/* accumulate block */
1548.2.1 by Barry.Leslie at PrimeBase
Added the PBMS daemon plugin.
91
	} md5_state;
92
1841.1.3 by Barry.Leslie at PrimeBase
Merged changes from lp:pbms. These changes should remove any danger
93
	u_char			digest[MD5_CHECKSUM_SIZE];
94
	char			digest_cstr[MD5_CHECKSUM_STRING_SIZE];
95
1548.2.1 by Barry.Leslie at PrimeBase
Added the PBMS daemon plugin.
96
	void md5_process(const u_char *data /*[64]*/);
1841.1.3 by Barry.Leslie at PrimeBase
Merged changes from lp:pbms. These changes should remove any danger
97
	void md5_digest();
1548.2.1 by Barry.Leslie at PrimeBase
Added the PBMS daemon plugin.
98
99
	public:
1841.1.3 by Barry.Leslie at PrimeBase
Merged changes from lp:pbms. These changes should remove any danger
100
	CSMd5() {
1548.2.1 by Barry.Leslie at PrimeBase
Added the PBMS daemon plugin.
101
		md5_init();
102
	}
1841.1.3 by Barry.Leslie at PrimeBase
Merged changes from lp:pbms. These changes should remove any danger
103
1548.2.1 by Barry.Leslie at PrimeBase
Added the PBMS daemon plugin.
104
	void md5_init();
105
106
	/* Append a string to the message. */
107
	void md5_append(const u_char  *data, int nbytes);
1841.1.3 by Barry.Leslie at PrimeBase
Merged changes from lp:pbms. These changes should remove any danger
108
109
	void md5_append(const char  *data) {
1548.2.1 by Barry.Leslie at PrimeBase
Added the PBMS daemon plugin.
110
		md5_append((const u_char  *) data, strlen(data));
111
	}
112
113
	/* Finish the message and return the digest. */
1841.1.3 by Barry.Leslie at PrimeBase
Merged changes from lp:pbms. These changes should remove any danger
114
	
115
	// Returns the raw bin digest.
116
	const u_char *md5_get_digest() {
117
		if (!digest_cstr[0])
118
			md5_digest();
119
		return digest;
120
	}
1548.2.1 by Barry.Leslie at PrimeBase
Added the PBMS daemon plugin.
121
1841.1.3 by Barry.Leslie at PrimeBase
Merged changes from lp:pbms. These changes should remove any danger
122
	// Returns the bin/hex digest.
123
	void md5_get_digest(Md5Digest *d) {
124
		if (!digest_cstr[0])
125
			md5_digest();
126
			
127
		memcpy(d->val, digest, CHECKSUM_VALUE_SIZE);
128
	}
129
	
130
	// Returns the bin/hex digest.
131
	const char *md5_get_digest_cstr() {
132
		if (!digest_cstr[0])
133
			md5_digest();
134
		return digest_cstr;
135
	}
136
	
1548.2.1 by Barry.Leslie at PrimeBase
Added the PBMS daemon plugin.
137
};
138
139
#endif /* md5_INCLUDED */