method
create_ext_from_array
v2_1_10 -
Show latest stable
- Class:
OpenSSL::X509::ExtensionFactory
create_ext_from_array(ary)public
No documentation available.
# File ext/openssl/lib/openssl/x509.rb, line 32
def create_ext_from_array(ary)
raise ExtensionError, "unexpected array form" if ary.size > 3
create_ext(ary[0], ary[1], ary[2])
end