class Rails::Auth::X509::Filter::PemUrlencoded

Extract OpenSSL::X509::Certificates from Privacy Enhanced Mail (PEM) certificates that are URL encoded ($ssl_client_escaped_cert from Nginx).

Public Instance Methods

call(encoded_pem) click to toggle source
Calls superclass method Rails::Auth::X509::Filter::Pem#call
# File lib/rails/auth/x509/filter/pem_urlencoded.rb, line 10
def call(encoded_pem)
  super(URI.decode_www_form_component(encoded_pem))
end