md5.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:6k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: md5.h,v 1.1.1.1.50.3 2004/07/09 01:48:00 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. /*
  50.   Copyright (C) 1999, 2002 Aladdin Enterprises.  All rights reserved.
  51.   This software is provided 'as-is', without any express or implied
  52.   warranty.  In no event will the authors be held liable for any damages
  53.   arising from the use of this software.
  54.   Permission is granted to anyone to use this software for any purpose,
  55.   including commercial applications, and to alter it and redistribute it
  56.   freely, subject to the following restrictions:
  57.   1. The origin of this software must not be misrepresented; you must not
  58.      claim that you wrote the original software. If you use this software
  59.      in a product, an acknowledgment in the product documentation would be
  60.      appreciated but is not required.
  61.   2. Altered source versions must be plainly marked as such, and must not be
  62.      misrepresented as being the original software.
  63.   3. This notice may not be removed or altered from any source distribution.
  64.   L. Peter Deutsch
  65.   ghost@aladdin.com
  66.  */
  67. /*
  68.   Independent implementation of MD5 (RFC 1321).
  69.   This code implements the MD5 Algorithm defined in RFC 1321, whose
  70.   text is available at
  71. http://www.ietf.org/rfc/rfc1321.txt
  72.   The code is derived from the text of the RFC, including the test suite
  73.   (section A.5) but excluding the rest of Appendix A.  It does not include
  74.   any code or documentation that is identified in the RFC as being
  75.   copyrighted.
  76.   The original and principal author of md5.h is L. Peter Deutsch
  77.   <ghost@aladdin.com>.  Other authors are noted in the change history
  78.   that follows (in reverse chronological order):
  79.   2002-04-13 lpd Removed support for non-ANSI compilers; removed
  80. references to Ghostscript; clarified derivation from RFC 1321;
  81. now handles byte order either statically or dynamically.
  82.   1999-11-04 lpd Edited comments slightly for automatic TOC extraction.
  83.   1999-10-18 lpd Fixed typo in header comment (ansi2knr rather than md5);
  84. added conditionalization for C++ compilation from Martin
  85. Purschke <purschke@bnl.gov>.
  86.   1999-05-03 lpd Original version.
  87.  */
  88. #ifndef md5_INCLUDED
  89. #  define md5_INCLUDED
  90. /*
  91.  * These should cause all callers and callees of the md5_ 
  92.  * function names to use a unique Helix specific name space
  93.  * of HX_md5_xxx. This will facilitate the inclusion of our 
  94.  * code into code bases that also use the md5_ functions. 
  95.  */
  96. #define md5_init    HX_md5_init
  97. #define md5_append  HX_md5_append
  98. #define md5_finish  HX_md5_finish
  99. #define MD5End      HX_MD5End
  100. #define MD5Data     HX_MD5Data
  101. #ifdef _BIG_ENDIAN
  102. #define ARCH_IS_BIG_ENDIAN 1
  103. #else
  104. #define ARCH_IS_BIG_ENDIAN 0
  105. #endif
  106. /*
  107.  * This package supports both compile-time and run-time determination of CPU
  108.  * byte order.  If ARCH_IS_BIG_ENDIAN is defined as 0, the code will be
  109.  * compiled to run only on little-endian CPUs; if ARCH_IS_BIG_ENDIAN is
  110.  * defined as non-zero, the code will be compiled to run only on big-endian
  111.  * CPUs; if ARCH_IS_BIG_ENDIAN is not defined, the code will be compiled to
  112.  * run on either big- or little-endian CPUs, but will run slightly less
  113.  * efficiently on either one than if ARCH_IS_BIG_ENDIAN is defined.
  114.  */
  115. typedef unsigned char md5_byte_t; /* 8-bit byte */
  116. typedef unsigned int md5_word_t; /* 32-bit word */
  117. /* Define the state of the MD5 Algorithm. */
  118. typedef struct md5_state_s {
  119.     md5_word_t count[2]; /* message length in bits, lsw first */
  120.     md5_word_t abcd[4]; /* digest buffer */
  121.     md5_byte_t buf[64]; /* accumulate block */
  122. } md5_state_t;
  123. #ifdef __cplusplus
  124. extern "C" 
  125. {
  126. #endif
  127. /* Initialize the algorithm. */
  128. void md5_init(md5_state_t *pms);
  129. /* Append a string to the message. */
  130. void md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes);
  131. /* Finish the message and return the digest. */
  132. /* changed order to match expected usage. */
  133. void md5_finish(md5_byte_t digest[16], md5_state_t *pms);
  134. char * MD5End(md5_state_t *ctx, char *p);
  135. char * MD5Data(char *, const unsigned char *, unsigned int);
  136. #ifdef __cplusplus
  137. }  /* end extern "C" */
  138. #endif
  139. #endif /* md5_INCLUDED */