00001 /* 00002 * Copyright (c) 2005-2012 by KoanLogic s.r.l. <http://www.koanlogic.com> 00003 * All rights reserved. 00004 * 00005 * This file is part of KLone, and as such it is subject to the license stated 00006 * in the LICENSE file which you have received as part of this distribution. 00007 * 00008 * $Id: md5.h,v 1.4 2006/01/09 12:38:37 tat Exp $ 00009 */ 00010 00011 /* 00012 Copyright (C) 1999, 2002 Aladdin Enterprises. All rights reserved. 00013 00014 This software is provided 'as-is', without any express or implied 00015 warranty. In no event will the authors be held liable for any damages 00016 arising from the use of this software. 00017 00018 Permission is granted to anyone to use this software for any purpose, 00019 including commercial applications, and to alter it and redistribute it 00020 freely, subject to the following restrictions: 00021 00022 1. The origin of this software must not be misrepresented; you must not 00023 claim that you wrote the original software. If you use this software 00024 in a product, an acknowledgment in the product documentation would be 00025 appreciated but is not required. 00026 2. Altered source versions must be plainly marked as such, and must not be 00027 misrepresented as being the original software. 00028 3. This notice may not be removed or altered from any source distribution. 00029 00030 L. Peter Deutsch 00031 ghost@aladdin.com 00032 00033 */ 00034 /* $Id: md5.h,v 1.4 2006/01/09 12:38:37 tat Exp $ */ 00035 /* 00036 Independent implementation of MD5 (RFC 1321). 00037 00038 This code implements the MD5 Algorithm defined in RFC 1321, whose 00039 text is available at 00040 http://www.ietf.org/rfc/rfc1321.txt 00041 The code is derived from the text of the RFC, including the test suite 00042 (section A.5) but excluding the rest of Appendix A. It does not include 00043 any code or documentation that is identified in the RFC as being 00044 copyrighted. 00045 00046 The original and principal author of md5.h is L. Peter Deutsch 00047 <ghost@aladdin.com>. Other authors are noted in the change history 00048 that follows (in reverse chronological order): 00049 00050 2002-04-13 lpd Removed support for non-ANSI compilers; removed 00051 references to Ghostscript; clarified derivation from RFC 1321; 00052 now handles byte order either statically or dynamically. 00053 1999-11-04 lpd Edited comments slightly for automatic TOC extraction. 00054 1999-10-18 lpd Fixed typo in header comment (ansi2knr rather than md5); 00055 added conditionalization for C++ compilation from Martin 00056 Purschke <purschke@bnl.gov>. 00057 1999-05-03 lpd Original version. 00058 */ 00059 00060 #ifndef md5_INCLUDED 00061 #define md5_INCLUDED 00062 00063 /* 00064 * This package supports both compile-time and run-time determination of CPU 00065 * byte order. If ARCH_IS_BIG_ENDIAN is defined as 0, the code will be 00066 * compiled to run only on little-endian CPUs; if ARCH_IS_BIG_ENDIAN is 00067 * defined as non-zero, the code will be compiled to run only on big-endian 00068 * CPUs; if ARCH_IS_BIG_ENDIAN is not defined, the code will be compiled to 00069 * run on either big- or little-endian CPUs, but will run slightly less 00070 * efficiently on either one than if ARCH_IS_BIG_ENDIAN is defined. 00071 */ 00072 00073 typedef unsigned char md5_byte_t; /* 8-bit byte */ 00074 typedef unsigned int md5_word_t; /* 32-bit word */ 00075 00076 #define MD5_DIGEST_LEN 32 00077 #define MD5_DIGEST_BUFSZ (MD5_DIGEST_LEN+1) 00078 00079 /* Define the state of the MD5 Algorithm. */ 00080 typedef struct md5_state_s { 00081 md5_word_t count[2]; /* message length in bits, lsw first */ 00082 md5_word_t abcd[4]; /* digest buffer */ 00083 md5_byte_t buf[64]; /* accumulate block */ 00084 } md5_state_t; 00085 00086 #ifdef __cplusplus 00087 extern "C" { 00088 #endif 00089 00090 /* Initialize the algorithm. */ 00091 void md5_init(md5_state_t *pms); 00092 00093 /* Append a string to the message. */ 00094 void md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes); 00095 00096 /* Finish the message and return the digest. */ 00097 void md5_finish(md5_state_t *pms, md5_byte_t digest[16]); 00098 00099 #ifdef __cplusplus 00100 } /* end extern "C" */ 00101 #endif 00102 00103 #endif /* md5_INCLUDED */ 00104