chromium/device/fido/public_key.h

// Copyright 2017 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_PUBLIC_KEY_H_
#define DEVICE_FIDO_PUBLIC_KEY_H_

#include <stdint.h>

#include <optional>
#include <vector>

#include "base/component_export.h"
#include "base/containers/span.h"

namespace device {

// https://www.w3.org/TR/webauthn/#credentialpublickey
struct COMPONENT_EXPORT(DEVICE_FIDO) PublicKey {};

}  // namespace device

#endif  // DEVICE_FIDO_PUBLIC_KEY_H_