diff options
author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-07 09:24:21 +0000 |
---|---|---|
committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-07 09:24:21 +0000 |
commit | e69821394bd240077b88aaf324557a8cdb764ba9 (patch) | |
tree | 917ce4701b4cb05fe5e3636384c736ade2ed9982 /string.c | |
parent | 865fd467284a8a7e91e1bfe75c55062bc86be849 (diff) | |
download | ruby-e69821394bd240077b88aaf324557a8cdb764ba9.tar.gz ruby-e69821394bd240077b88aaf324557a8cdb764ba9.tar.xz ruby-e69821394bd240077b88aaf324557a8cdb764ba9.zip |
* ext/openssl/ossl_engine.c (ossl_engine_s_by_id):
OpenSSL::Engine.by_id calls given block before calling ENGINE_init
(block parameter is the return value of this method itself).
this functionality is useful to load dynamic shared engines.
require "openssl"
pkcs11 = OpenSSL::Engine.by_id("dynamic"){|e|
e.ctrl_cmd("SO_PATH", "/usr/lib/opensc/engine_pkcs11.so")
e.ctrl_cmd("LIST_ADD", "1")
e.ctrl_cmd("LOAD")
}
pkcs11.ctrl_cmd("PIN", "secret")
key = pkcs11.load_private_key
* ext/openssl/ossl_engine.c (ossl_engine_ctrl_cmd): new method
OpenSSL::Engine#ctrl_cmd. it wraps ENGINE_ctrl_cmd_string.
* ext/openssl/ossl_engine.c (ossl_engine_get_cmds): new method
OpenSSL::Engine#cmds. it returms engine command definitions.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9096 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
0 files changed, 0 insertions, 0 deletions