src/md5.h
changeset 5475 2e6990a8c7c4
parent 4434 a08cb4b5c179
child 5941 adaea39e84ab
equal deleted inserted replaced
5474:ac55aefc54f3 5475:2e6990a8c7c4
       
     1 /* $Id$ */
       
     2 
       
     3 /*
       
     4   Copyright (C) 1999, 2002 Aladdin Enterprises.  All rights reserved.
       
     5 
       
     6   This software is provided 'as-is', without any express or implied
       
     7   warranty.  In no event will the authors be held liable for any damages
       
     8   arising from the use of this software.
       
     9 
       
    10   Permission is granted to anyone to use this software for any purpose,
       
    11   including commercial applications, and to alter it and redistribute it
       
    12   freely, subject to the following restrictions:
       
    13 
       
    14   1. The origin of this software must not be misrepresented; you must not
       
    15      claim that you wrote the original software. If you use this software
       
    16      in a product, an acknowledgment in the product documentation would be
       
    17      appreciated but is not required.
       
    18   2. Altered source versions must be plainly marked as such, and must not be
       
    19      misrepresented as being the original software.
       
    20   3. This notice may not be removed or altered from any source distribution.
       
    21 
       
    22   L. Peter Deutsch
       
    23   ghost@aladdin.com
       
    24 
       
    25  */
       
    26 /* $Id$ */
       
    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 #ifndef MD5_INCLUDED
       
    53 #define MD5_INCLUDED
       
    54 
       
    55 /*
       
    56  * This package supports both compile-time and run-time determination of CPU
       
    57  * byte order.  If ARCH_IS_BIG_ENDIAN is defined as 0, the code will be
       
    58  * compiled to run only on little-endian CPUs; if ARCH_IS_BIG_ENDIAN is
       
    59  * defined as non-zero, the code will be compiled to run only on big-endian
       
    60  * CPUs; if ARCH_IS_BIG_ENDIAN is not defined, the code will be compiled to
       
    61  * run on either big- or little-endian CPUs, but will run slightly less
       
    62  * efficiently on either one than if ARCH_IS_BIG_ENDIAN is defined.
       
    63  */
       
    64 
       
    65 typedef unsigned char md5_byte_t; /* 8-bit byte */
       
    66 typedef unsigned int md5_word_t; /* 32-bit word */
       
    67 
       
    68 /* Define the state of the MD5 Algorithm. */
       
    69 typedef struct md5_state_s {
       
    70     md5_word_t count[2]; /* message length in bits, lsw first */
       
    71     md5_word_t abcd[4];  /* digest buffer */
       
    72     md5_byte_t buf[64];  /* accumulate block */
       
    73 } md5_state_t;
       
    74 
       
    75 #ifdef __cplusplus
       
    76 extern "C"
       
    77 {
       
    78 #endif
       
    79 
       
    80 /* Initialize the algorithm. */
       
    81 void md5_init(md5_state_t *pms);
       
    82 
       
    83 /* Append a string to the message. */
       
    84 void md5_append(md5_state_t *pms, const void *data, size_t nbytes);
       
    85 
       
    86 /* Finish the message and return the digest. */
       
    87 void md5_finish(md5_state_t *pms, md5_byte_t digest[16]);
       
    88 
       
    89 #ifdef __cplusplus
       
    90 }  /* end extern "C" */
       
    91 #endif
       
    92 
       
    93 #endif /* MD5_INCLUDED */