mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 08:33:58 +02:00
openssl: import v2.0.0
Import Ruby/OpenSSL 2.0.0. The full commit history since 2.0.0 beta.2 (imported at r56098) can be found at: https://github.com/ruby/openssl/compare/v2.0.0.beta.2...v2.0.0 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56946 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0a5abaf745
commit
aab0d67a1f
49 changed files with 1230 additions and 1286 deletions
|
@ -227,21 +227,6 @@ ossl_engine_s_by_id(VALUE klass, VALUE id)
|
|||
return obj;
|
||||
}
|
||||
|
||||
static VALUE
|
||||
ossl_engine_s_alloc(VALUE klass)
|
||||
{
|
||||
ENGINE *e;
|
||||
VALUE obj;
|
||||
|
||||
obj = NewEngine(klass);
|
||||
if (!(e = ENGINE_new())) {
|
||||
ossl_raise(eEngineError, NULL);
|
||||
}
|
||||
SetEngine(obj, e);
|
||||
|
||||
return obj;
|
||||
}
|
||||
|
||||
/* Document-method: OpenSSL::Engine#id
|
||||
*
|
||||
* Get the id for this engine
|
||||
|
@ -537,13 +522,11 @@ Init_ossl_engine(void)
|
|||
cEngine = rb_define_class_under(mOSSL, "Engine", rb_cObject);
|
||||
eEngineError = rb_define_class_under(cEngine, "EngineError", eOSSLError);
|
||||
|
||||
rb_define_alloc_func(cEngine, ossl_engine_s_alloc);
|
||||
rb_undef_alloc_func(cEngine);
|
||||
rb_define_singleton_method(cEngine, "load", ossl_engine_s_load, -1);
|
||||
rb_define_singleton_method(cEngine, "cleanup", ossl_engine_s_cleanup, 0);
|
||||
rb_define_singleton_method(cEngine, "engines", ossl_engine_s_engines, 0);
|
||||
rb_define_singleton_method(cEngine, "by_id", ossl_engine_s_by_id, 1);
|
||||
rb_undef_method(CLASS_OF(cEngine), "new");
|
||||
rb_undef_method(cEngine, "initialize_copy");
|
||||
|
||||
rb_define_method(cEngine, "id", ossl_engine_get_id, 0);
|
||||
rb_define_method(cEngine, "name", ossl_engine_get_name, 0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue