# File lib/typhoeus/easy.rb, line 290
    def ssl_cert_type=(cert_type)
      raise "Invalid ssl cert type : '#{cert_type}'..." if cert_type and !%w(PEM DER p12).include?(cert_type)
      set_option(OPTION_VALUES[:CURLOPT_SSLCERTTYPE], cert_type)
    end