Method: OpenSSL::Engine#name

Defined in:
ossl_engine.c

#nameObject



150
151
152
153
154
155
156
# File 'ossl_engine.c', line 150

static VALUE
ossl_engine_get_name(VALUE self)
{
    ENGINE *e;
    GetEngine(self, e);
    return rb_str_new2(ENGINE_get_name(e));
}