summaryrefslogtreecommitdiff
path: root/ext/digest/md5/md5ossl.h
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-10-11 05:15:15 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-10-11 05:15:15 +0000
commitcd58f3313e1dd60895e1888290f7e433bec67208 (patch)
tree9f83d84fbcd020e86e23c6bf68aed78590fe490e /ext/digest/md5/md5ossl.h
parent55b9887f970c21fcf483e14f940e860498a9606c (diff)
* ext/digest/digest.c (rb_digest_base_reset, Init_digest): Add
Digest::Base#reset. * ext/digest/digest.h: Update the header comment. * ext/digest/md5/md5ossl.h, ext/digest/md5/md5init.c (Init_md5): Define DIGEST_LENGTH and BLOCK_LENGTH. * ext/digest/rmd160/rmd160init.c (Init_rmd160): Ditto. * ext/digest/sha1/sha1init.c (Init_sha1): Ditto. * ext/digest/sha2/sha2init.c (Init_sha2): Ditto. * ext/digest/depend, ext/digest/extconf.rb: Use $INSTALLFILES rather than adding make targets. [Pointed out by: nobu] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11122 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/digest/md5/md5ossl.h')
-rw-r--r--ext/digest/md5/md5ossl.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/digest/md5/md5ossl.h b/ext/digest/md5/md5ossl.h
index bccbe05f2a..ec629c55d4 100644
--- a/ext/digest/md5/md5ossl.h
+++ b/ext/digest/md5/md5ossl.h
@@ -6,6 +6,8 @@
#include <stddef.h>
#include <openssl/md5.h>
+#define MD5_BLOCK_LENGTH MD5_CBLOCK
+
void MD5_Finish(MD5_CTX *pctx, unsigned char *digest);
int MD5_Equal(MD5_CTX *pctx1, MD5_CTX *pctx2);