From 965393cbb848ddb869543a5ca8f6e7fba1d0f130 Mon Sep 17 00:00:00 2001 From: knu Date: Thu, 26 Sep 2002 16:27:23 +0000 Subject: * ext/digest/md5: Use OpenSSL's MD5 engine if available. It is much faster than what we have now (md5.[ch]). Add a knob (--with-bundled-md5) to extconf.rb which makes it use the bundled one anyway. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2893 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/digest/md5/md5ossl.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ext/digest/md5/md5ossl.h (limited to 'ext/digest/md5/md5ossl.h') diff --git a/ext/digest/md5/md5ossl.h b/ext/digest/md5/md5ossl.h new file mode 100644 index 0000000000..dda7c743ed --- /dev/null +++ b/ext/digest/md5/md5ossl.h @@ -0,0 +1,11 @@ +/* $Id$ */ + +#ifndef MD5OSSL_H_INCLUDED +#define MD5OSSL_H_INCLUDED + +#include + +void MD5_End(MD5_CTX *pctx, unsigned char *hexdigest); +int MD5_Equal(MD5_CTX *pctx1, MD5_CTX *pctx2); + +#endif -- cgit v1.2.3