class OpenSSL::X509::ExtensionFactory

Public Instance Methods

create_ext_from_array(ary) click to toggle source
# File lib/openssl_cms/x509-internal.rb, line 28
def create_ext_from_array(ary)
  raise ExtensionError, "unexpected array form" if ary.size > 3
  create_ext(ary[0], ary[1], ary[2])
end
create_ext_from_hash(hash) click to toggle source
# File lib/openssl_cms/x509-internal.rb, line 40
def create_ext_from_hash(hash)
  create_ext(hash["oid"], hash["value"], hash["critical"])
end
create_ext_from_string(str) click to toggle source
# File lib/openssl_cms/x509-internal.rb, line 33
def create_ext_from_string(str) # "oid = critical, value"
  oid, value = str.split(/=/, 2)
  oid.strip!
  value.strip!
  create_ext(oid, value)
end
create_extension(*arg) click to toggle source
# File lib/openssl_cms/x509-internal.rb, line 20
def create_extension(*arg)
  if arg.size > 1
    create_ext(*arg)
  else
    send("create_ext_from_"+arg[0].class.name.downcase, arg[0])
  end
end