method

create_ext_from_array

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