method

eql?

v1_9_2_180 - Show latest stable - Class: OpenSSL::X509::Name
eql?(p1)
public

No documentation available.

static VALUE
ossl_x509name_eql(VALUE self, VALUE other)
{
    int result;

    if(CLASS_OF(other) != cX509Name) return Qfalse;
    result = ossl_x509name_cmp0(self, other);

    return (result == 0) ? Qtrue : Qfalse;
}