From 7a6adb89246e1829e6da1666e2894b6bd3322539 Mon Sep 17 00:00:00 2001 From: knu Date: Thu, 26 Sep 2002 17:44:33 +0000 Subject: * ext/digest/sha1: Use OpenSSL's SHA1 engine if available. It is much faster than what we have now (sha1.[ch]). Add a knob (--with-bundled-sha1) to extconf.rb which makes it use the bundled one anyway. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2895 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/digest/sha1/sha1ossl.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 ext/digest/sha1/sha1ossl.h (limited to 'ext/digest/sha1/sha1ossl.h') diff --git a/ext/digest/sha1/sha1ossl.h b/ext/digest/sha1/sha1ossl.h new file mode 100644 index 0000000000..e8d7e74baf --- /dev/null +++ b/ext/digest/sha1/sha1ossl.h @@ -0,0 +1,16 @@ +/* $Id$ */ + +#ifndef SHA1OSSL_H_INCLUDED +#define SHA1OSSL_H_INCLUDED + +#include + +#define SHA1_CTX SHA_CTX + +#define SHA1_BLOCK_LENGTH SHA_BLOCK_LENGTH +#define SHA1_DIGEST_LENGTH SHA_DIGEST_LENGTH + +char *SHA1_End(SHA1_CTX *ctx, char *buf); +int SHA1_Equal(SHA1_CTX *pctx1, SHA1_CTX *pctx2); + +#endif -- cgit v1.2.3