class Spyse::Client::Cert

Public Instance Methods

get(hash) click to toggle source

Returns the current data about the given certificate.

@param [String] hash The SHA256 fingerprint of the certificate.

@return [Hash]

# File lib/spyse/clients/cert.rb, line 13
def get(hash)
  _get("/certificate/#{hash}") { |json| json }
end