// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // This file contains structures to implement the CTAP2 PIN protocol, version // one. See // https://fidoalliance.org/specs/fido-v2.0-rd-20180702/fido-client-to-authenticator-protocol-v2.0-rd-20180702.html#authenticatorClientPIN #ifndef DEVICE_FIDO_PIN_H_ #define DEVICE_FIDO_PIN_H_ #include <stdint.h> #include <array> #include <optional> #include <string> #include <vector> #include "base/component_export.h" #include "base/containers/span.h" #include "components/cbor/values.h" #include "device/fido/fido_constants.h" namespace device { pin // namespace pin } // namespace device #endif // DEVICE_FIDO_PIN_H_