blob: e15fa64f91ca28300e1ca4cd0d4d8336d4959fb8 [file] [log] [blame]
// 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 DEVICE_FIDO_CTAP_AUTHENTICATOR_SELECTION_REQUEST_H_
#define DEVICE_FIDO_CTAP_AUTHENTICATOR_SELECTION_REQUEST_H_
#include <utility>
#include "components/cbor/values.h"
#include "device/fido/fido_constants.h"
#include "third_party/abseil-cpp/absl/types/optional.h"
namespace device {
struct CtapAuthenticatorSelectionRequest {};
std::pair<CtapRequestCommand, absl::optional<cbor::Value>>
AsCTAPRequestValuePair(const CtapAuthenticatorSelectionRequest&);
} // namespace device
#endif // DEVICE_FIDO_CTAP_AUTHENTICATOR_SELECTION_REQUEST_H_