2001-07-13 16:06:14 -04:00
|
|
|
/* $NetBSD: rmd160.h,v 1.2 2000/07/07 10:47:06 ad Exp $ */
|
2002-02-24 03:20:50 -05:00
|
|
|
/* $RoughId: rmd160.h,v 1.3 2002/02/24 08:14:31 knu Exp $ */
|
2001-07-13 16:06:14 -04:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/********************************************************************\
|
|
|
|
*
|
|
|
|
* FILE: rmd160.h
|
|
|
|
*
|
|
|
|
* CONTENTS: Header file for a sample C-implementation of the
|
|
|
|
* RIPEMD-160 hash-function.
|
|
|
|
* TARGET: any computer with an ANSI C compiler
|
|
|
|
*
|
|
|
|
* AUTHOR: Antoon Bosselaers, ESAT-COSIC
|
|
|
|
* DATE: 1 March 1996
|
|
|
|
* VERSION: 1.0
|
|
|
|
*
|
|
|
|
* Copyright (c) Katholieke Universiteit Leuven
|
|
|
|
* 1996, All Rights Reserved
|
|
|
|
*
|
|
|
|
\********************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* from OpenBSD: rmd160.h,v 1.4 1999/08/16 09:59:04 millert Exp
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _RMD160_H_
|
|
|
|
#define _RMD160_H_
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint32_t state[5]; /* state (ABCDE) */
|
|
|
|
uint32_t length[2]; /* number of bits */
|
|
|
|
uint8_t bbuffer[64]; /* overflow buffer */
|
|
|
|
uint32_t buflen; /* number of chars in bbuffer */
|
|
|
|
} RMD160_CTX;
|
|
|
|
|
2002-02-24 03:20:50 -05:00
|
|
|
#ifdef RUBY
|
|
|
|
#define RMD160_Init rb_Digest_RMD160_Init
|
|
|
|
#define RMD160_Transform rb_Digest_RMD160_Transform
|
|
|
|
#define RMD160_Update rb_Digest_RMD160_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 RMD160_Finish rb_Digest_RMD160_Finish
|
2002-02-24 03:20:50 -05:00
|
|
|
#define RMD160_Equal rb_Digest_RMD160_Equal
|
|
|
|
#endif
|
|
|
|
|
2001-07-13 16:06:14 -04:00
|
|
|
__BEGIN_DECLS
|
|
|
|
void RMD160_Init _((RMD160_CTX *));
|
|
|
|
void RMD160_Transform _((uint32_t[5], const uint32_t[16]));
|
|
|
|
void RMD160_Update _((RMD160_CTX *, const uint8_t *, size_t));
|
* 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 RMD160_Finish _((RMD160_CTX *, uint8_t[20]));
|
2001-07-13 16:06:14 -04:00
|
|
|
int RMD160_Equal _((RMD160_CTX *, RMD160_CTX *));
|
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#define RMD160_BLOCK_LENGTH 64
|
|
|
|
#define RMD160_DIGEST_LENGTH 20
|
|
|
|
#define RMD160_DIGEST_STRING_LENGTH (RMD160_DIGEST_LENGTH * 2 + 1)
|
|
|
|
|
|
|
|
#endif /* !_RMD160_H_ */
|