From e6dde8be4d2538464372fd0c7499d625239a3b08 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 22 Feb 2010 02:21:22 +0000 Subject: * ext/digest/sha2: Use OpenSSL's SHA1 engine if available. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26726 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/digest/sha2/sha2init.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ext/digest/sha2/sha2init.c') diff --git a/ext/digest/sha2/sha2init.c b/ext/digest/sha2/sha2init.c index 8b79e950a6..fca33185d8 100644 --- a/ext/digest/sha2/sha2init.c +++ b/ext/digest/sha2/sha2init.c @@ -2,7 +2,11 @@ /* $Id$ */ #include "digest.h" +#if defined(HAVE_OPENSSL_SHA_H) +#include "sha2ossl.h" +#else #include "sha2.h" +#endif #define FOREACH_BITLEN(func) func(256) func(384) func(512) -- cgit v1.2.3