ctap_authenticator_selection_request.cc 510 B

123456789101112131415
  1. // Copyright 2020 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "device/fido/ctap_authenticator_selection_request.h"
  5. namespace device {
  6. std::pair<CtapRequestCommand, absl::optional<cbor::Value>>
  7. AsCTAPRequestValuePair(const CtapAuthenticatorSelectionRequest&) {
  8. return std::make_pair(CtapRequestCommand::kAuthenticatorSelection,
  9. absl::nullopt);
  10. }
  11. } // namespace device