summaryrefslogtreecommitdiffstats
path: root/ext/openssl/ossl.c
diff options
context:
space:
mode:
authorgotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-02 08:47:11 +0000
committergotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-02 08:47:11 +0000
commitb53bf7b42b5954d26323f49bf567ace4978e893e (patch)
treea68fcc343756e8e9b1473836e6da7d4579f72718 /ext/openssl/ossl.c
parent69eaabdca83558c3b85d8606606dc3975a106dac (diff)
downloadruby-b53bf7b42b5954d26323f49bf567ace4978e893e.tar.gz
ruby-b53bf7b42b5954d26323f49bf567ace4978e893e.tar.xz
ruby-b53bf7b42b5954d26323f49bf567ace4978e893e.zip
* ext/openssl/ossl_engine.c: add a new module OpenSSL::Engine.
it supports OpenSSL hardware cryptographic engine interface. * ext/openssl/ossl_engine.h: ditto. * ext/openssl/MANIFEST: add ossl_engine.c and ossl_engine.h. * ext/openssl/extconf.rb: add check for openssl/engine.h. * ext/openssl/ossl.c: call Init_ossl_engine(). * ext/openssl/ossl.h: include openssl/engine.h. * ext/openssl/ossl_pkey_{rsa,dsa,dh}.c: check if underlying EVP_PKEY referes engine. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4652 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/ossl.c')
-rw-r--r--ext/openssl/ossl.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/openssl/ossl.c b/ext/openssl/ossl.c
index 497f2549f..cc12a8fda 100644
--- a/ext/openssl/ossl.c
+++ b/ext/openssl/ossl.c
@@ -433,6 +433,7 @@ Init_openssl()
Init_ossl_ssl();
Init_ossl_x509();
Init_ossl_ocsp();
+ Init_ossl_engine();
}
#if defined(OSSL_DEBUG)