Method: OpenSSL::X509::Request#==

Defined in:
lib/openssl/x509.rb

#==(other) ⇒ Object



209
210
211
212
# File 'lib/openssl/x509.rb', line 209

def ==(other)
  return false unless Request === other
  to_der == other.to_der
end