[Source]
# File openssl/lib/openssl/x509.rb, line 59 def to_a [ self.oid, self.value, self.critical? ] end
# File openssl/lib/openssl/x509.rb, line 55 def to_h # {"oid"=>sn|ln, "value"=>value, "critical"=>true|false} {"oid"=>self.oid,"value"=>self.value,"critical"=>self.critical?} end
# File openssl/lib/openssl/x509.rb, line 48 def to_s # "oid = critical, value" str = self.oid str << " = " str << "critical, " if self.critical? str << self.value.gsub(/\n/, ", ") end
[Validate]