class WebAuthn::AttestationStatement::None

def attestation_type

def attestation_type
  WebAuthn::AttestationStatement::ATTESTATION_TYPE_NONE
end

def valid?(*_args)

def valid?(*_args)
  if statement == {} && trustworthy?
    [WebAuthn::AttestationStatement::ATTESTATION_TYPE_NONE, nil]
  else
    false
  end
end