chromium/components/trusted_vault/download_keys_response_handler.h

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_TRUSTED_VAULT_DOWNLOAD_KEYS_RESPONSE_HANDLER_H_
#define COMPONENTS_TRUSTED_VAULT_DOWNLOAD_KEYS_RESPONSE_HANDLER_H_

#include <memory>
#include <optional>
#include <string>
#include <vector>

#include "components/trusted_vault/trusted_vault_connection.h"
#include "components/trusted_vault/trusted_vault_request.h"

namespace trusted_vault {

enum class SecurityDomainId;
class SecureBoxKeyPair;

// Helper class to extract and validate trusted vault keys for a specific
// security domain from a GetSecurityDomainMember response.
class DownloadKeysResponseHandler {};

}  // namespace trusted_vault

#endif  // COMPONENTS_TRUSTED_VAULT_DOWNLOAD_KEYS_RESPONSE_HANDLER_H_