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