class Google::Auth::IDTokens::KeyInfo

def initialize id: nil, key: nil, algorithm: nil

Parameters:
  • algorithm (String) -- The algorithm (normally `RS256` or `ES256`)
  • key (OpenSSL::PKey::RSA, OpenSSL::PKey::EC) -- The key itself.
  • id (String) -- The key ID.
def initialize id: nil, key: nil, algorithm: nil
  @id = id
  @key = key
  @algorithm = algorithm
end