2001-03-26 03:57:16 -05:00
|
|
|
/*
|
|
|
|
Copyright (C) 1999 Aladdin Enterprises. All rights reserved.
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2001-03-26 03:57:16 -05:00
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2001-03-26 03:57:16 -05:00
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely, subject to the following restrictions:
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2001-03-26 03:57:16 -05:00
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
|
|
claim that you wrote the original software. If you use this software
|
|
|
|
in a product, an acknowledgment in the product documentation would be
|
|
|
|
appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source distribution.
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2001-03-26 03:57:16 -05:00
|
|
|
L. Peter Deutsch
|
|
|
|
ghost@aladdin.com
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
*/
|
2001-03-26 03:57:16 -05:00
|
|
|
/*
|
|
|
|
Independent implementation of MD5 (RFC 1321).
|
|
|
|
|
|
|
|
This code implements the MD5 Algorithm defined in RFC 1321.
|
|
|
|
It is derived directly from the text of the RFC and not from the
|
|
|
|
reference implementation.
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2001-03-26 03:57:16 -05:00
|
|
|
The original and principal author of md5.h is L. Peter Deutsch
|
|
|
|
<ghost@aladdin.com>. Other authors are noted in the change history
|
|
|
|
that follows (in reverse chronological order):
|
|
|
|
|
|
|
|
1999-11-04 lpd Edited comments slightly for automatic TOC extraction.
|
|
|
|
1999-10-18 lpd Fixed typo in header comment (ansi2knr rather than md5);
|
|
|
|
added conditionalization for C++ compilation from Martin
|
|
|
|
Purschke <purschke@bnl.gov>.
|
|
|
|
1999-05-03 lpd Original version.
|
1998-01-16 07:13:05 -05:00
|
|
|
*/
|
|
|
|
|
2001-07-13 16:06:14 -04:00
|
|
|
/* $OrigId: md5.h,v 1.2 2001/03/26 08:57:14 matz Exp $ */
|
2002-02-24 03:20:50 -05:00
|
|
|
/* $RoughId: md5.h,v 1.3 2002/02/24 08:14:31 knu Exp $ */
|
2001-07-13 16:06:14 -04:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#ifndef MD5_INCLUDED
|
|
|
|
# define MD5_INCLUDED
|
|
|
|
|
|
|
|
#include "defs.h"
|
2001-03-26 03:57:16 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This code has some adaptations for the Ghostscript environment, but it
|
|
|
|
* will compile and run correctly in any environment with 8-bit chars and
|
|
|
|
* 32-bit ints. Specifically, it assumes that if the following are
|
2001-07-13 16:06:14 -04:00
|
|
|
* defined, they have the same meaning as in Ghostscript: P1, P2, P3.
|
1998-01-16 07:13:05 -05:00
|
|
|
*/
|
|
|
|
|
2001-03-26 03:57:16 -05:00
|
|
|
/* Define the state of the MD5 Algorithm. */
|
|
|
|
typedef struct md5_state_s {
|
2001-07-13 16:06:14 -04:00
|
|
|
uint32_t count[2]; /* message length in bits, lsw first */
|
|
|
|
uint32_t state[4]; /* digest buffer */
|
|
|
|
uint8_t buffer[64]; /* accumulate block */
|
|
|
|
} MD5_CTX;
|
|
|
|
|
2002-02-24 03:20:50 -05:00
|
|
|
#ifdef RUBY
|
* ext/digest/digest.[ch]: Since the argument order of
hash_final_func_t was inconsistent with others, change it and
rename to hash_finish_func_t to avoid confusion.
* ext/digest/digest.[ch]: Remove and eliminate the use of
hash_end_func_t. Implement hexdigest conversion in the base
class.
* ext/digest/md5/md5.c, ext/digest/md5/md5.h,
ext/digest/md5/md5init.c, ext/digest/md5/md5ossl.c,
ext/digest/md5/md5ossl.h: Remove MD5_End() and change
MD5_Final() to MD5_Finish().
* ext/digest/rmd160/depend, ext/digest/rmd160/extconf.rb,
ext/digest/rmd160/rmd160.c, ext/digest/rmd160/rmd160.h,
ext/digest/rmd160/rmd160hl.c, ext/digest/rmd160/rmd160init.c,
ext/digest/rmd160/rmd160ossl.c, ext/digest/rmd160/rmd160ossl.h:
Remove unused functions RMD160_End(), RMD160_File(),
RMD160_Data() and change RMD160_Final() to RMD160_Finish().
* ext/digest/sha1/extconf.rb, ext/digest/sha1/sha1.c,
ext/digest/sha1/sha1.h, ext/digest/sha1/sha1hl.c,
ext/digest/sha1/sha1init.c, ext/digest/sha1/sha1ossl.c,
ext/digest/sha1/sha1ossl.h: Likewise.
* ext/digest/sha2/extconf.rb, ext/digest/sha2/sha2.c,
ext/digest/sha2/sha2.h, ext/digest/sha2/sha2hl.c,
ext/digest/sha2/sha2init.c: Likewise.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11086 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-10-05 07:09:42 -04:00
|
|
|
/* avoid name clash */
|
2002-02-24 03:20:50 -05:00
|
|
|
#define MD5_Init rb_Digest_MD5_Init
|
|
|
|
#define MD5_Update rb_Digest_MD5_Update
|
* ext/digest/digest.[ch]: Since the argument order of
hash_final_func_t was inconsistent with others, change it and
rename to hash_finish_func_t to avoid confusion.
* ext/digest/digest.[ch]: Remove and eliminate the use of
hash_end_func_t. Implement hexdigest conversion in the base
class.
* ext/digest/md5/md5.c, ext/digest/md5/md5.h,
ext/digest/md5/md5init.c, ext/digest/md5/md5ossl.c,
ext/digest/md5/md5ossl.h: Remove MD5_End() and change
MD5_Final() to MD5_Finish().
* ext/digest/rmd160/depend, ext/digest/rmd160/extconf.rb,
ext/digest/rmd160/rmd160.c, ext/digest/rmd160/rmd160.h,
ext/digest/rmd160/rmd160hl.c, ext/digest/rmd160/rmd160init.c,
ext/digest/rmd160/rmd160ossl.c, ext/digest/rmd160/rmd160ossl.h:
Remove unused functions RMD160_End(), RMD160_File(),
RMD160_Data() and change RMD160_Final() to RMD160_Finish().
* ext/digest/sha1/extconf.rb, ext/digest/sha1/sha1.c,
ext/digest/sha1/sha1.h, ext/digest/sha1/sha1hl.c,
ext/digest/sha1/sha1init.c, ext/digest/sha1/sha1ossl.c,
ext/digest/sha1/sha1ossl.h: Likewise.
* ext/digest/sha2/extconf.rb, ext/digest/sha2/sha2.c,
ext/digest/sha2/sha2.h, ext/digest/sha2/sha2hl.c,
ext/digest/sha2/sha2init.c: Likewise.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11086 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-10-05 07:09:42 -04:00
|
|
|
#define MD5_Finish rb_Digest_MD5_Finish
|
2002-02-24 03:20:50 -05:00
|
|
|
#endif
|
|
|
|
|
2001-07-13 16:06:14 -04:00
|
|
|
void MD5_Init _((MD5_CTX *pms));
|
|
|
|
void MD5_Update _((MD5_CTX *pms, const uint8_t *data, size_t nbytes));
|
* ext/digest/digest.[ch]: Since the argument order of
hash_final_func_t was inconsistent with others, change it and
rename to hash_finish_func_t to avoid confusion.
* ext/digest/digest.[ch]: Remove and eliminate the use of
hash_end_func_t. Implement hexdigest conversion in the base
class.
* ext/digest/md5/md5.c, ext/digest/md5/md5.h,
ext/digest/md5/md5init.c, ext/digest/md5/md5ossl.c,
ext/digest/md5/md5ossl.h: Remove MD5_End() and change
MD5_Final() to MD5_Finish().
* ext/digest/rmd160/depend, ext/digest/rmd160/extconf.rb,
ext/digest/rmd160/rmd160.c, ext/digest/rmd160/rmd160.h,
ext/digest/rmd160/rmd160hl.c, ext/digest/rmd160/rmd160init.c,
ext/digest/rmd160/rmd160ossl.c, ext/digest/rmd160/rmd160ossl.h:
Remove unused functions RMD160_End(), RMD160_File(),
RMD160_Data() and change RMD160_Final() to RMD160_Finish().
* ext/digest/sha1/extconf.rb, ext/digest/sha1/sha1.c,
ext/digest/sha1/sha1.h, ext/digest/sha1/sha1hl.c,
ext/digest/sha1/sha1init.c, ext/digest/sha1/sha1ossl.c,
ext/digest/sha1/sha1ossl.h: Likewise.
* ext/digest/sha2/extconf.rb, ext/digest/sha2/sha2.c,
ext/digest/sha2/sha2.h, ext/digest/sha2/sha2hl.c,
ext/digest/sha2/sha2init.c: Likewise.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11086 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-10-05 07:09:42 -04:00
|
|
|
void MD5_Finish _((MD5_CTX *pms, uint8_t *digest));
|
2001-07-13 16:06:14 -04:00
|
|
|
|
|
|
|
#define MD5_BLOCK_LENGTH 64
|
|
|
|
#define MD5_DIGEST_LENGTH 16
|
|
|
|
#define MD5_DIGEST_STRING_LENGTH (MD5_DIGEST_LENGTH * 2 + 1)
|
|
|
|
|
|
|
|
#endif /* MD5_INCLUDED */
|