2001-07-13 16:06:14 -04:00
|
|
|
/* $RoughId: sha2init.c,v 1.3 2001/07/13 20:00:43 knu Exp $ */
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#include "digest.h"
|
|
|
|
#include "sha2.h"
|
|
|
|
|
|
|
|
#define FOREACH_BITLEN(func) func(256) func(384) func(512)
|
|
|
|
|
|
|
|
#define DEFINE_ALGO_METADATA(bitlen) \
|
|
|
|
static algo_t sha##bitlen = { \
|
|
|
|
SHA##bitlen##_DIGEST_LENGTH, \
|
|
|
|
sizeof(SHA##bitlen##_CTX), \
|
|
|
|
(hash_init_func_t)SHA##bitlen##_Init, \
|
|
|
|
(hash_update_func_t)SHA##bitlen##_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
|
|
|
(hash_finish_func_t)SHA##bitlen##_Finish, \
|
2001-07-13 16:06:14 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
FOREACH_BITLEN(DEFINE_ALGO_METADATA)
|
|
|
|
|
|
|
|
void
|
|
|
|
Init_sha2()
|
|
|
|
{
|
|
|
|
VALUE mDigest, cDigest_Base;
|
|
|
|
ID id_metadata;
|
|
|
|
|
|
|
|
#define DECLARE_ALGO_CLASS(bitlen) \
|
|
|
|
VALUE cDigest_SHA##bitlen;
|
|
|
|
|
|
|
|
FOREACH_BITLEN(DECLARE_ALGO_CLASS)
|
|
|
|
|
2006-09-27 10:34:49 -04:00
|
|
|
rb_require("digest");
|
2001-07-13 16:06:14 -04:00
|
|
|
|
|
|
|
id_metadata = rb_intern("metadata");
|
|
|
|
|
|
|
|
mDigest = rb_path2class("Digest");
|
|
|
|
cDigest_Base = rb_path2class("Digest::Base");
|
|
|
|
|
|
|
|
#define DEFINE_ALGO_CLASS(bitlen) \
|
|
|
|
cDigest_SHA##bitlen = rb_define_class_under(mDigest, "SHA" #bitlen, cDigest_Base); \
|
2006-10-11 01:15:15 -04:00
|
|
|
\
|
|
|
|
rb_define_const(cDigest_SHA##bitlen, "DIGEST_LENGTH", INT2NUM(SHA##bitlen##_DIGEST_LENGTH)); \
|
|
|
|
rb_define_const(cDigest_SHA##bitlen, "BLOCK_LENGTH", INT2NUM(SHA##bitlen##_BLOCK_LENGTH)); \
|
2001-07-13 16:06:14 -04:00
|
|
|
\
|
2006-10-11 13:14:54 -04:00
|
|
|
rb_ivar_set(cDigest_SHA##bitlen, id_metadata, \
|
|
|
|
Data_Wrap_Struct(rb_cObject, 0, 0, &sha##bitlen));
|
2001-07-13 16:06:14 -04:00
|
|
|
|
|
|
|
FOREACH_BITLEN(DEFINE_ALGO_CLASS)
|
|
|
|
}
|