// Copyright 2024 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_WEB_PACKAGE_SIGNED_WEB_BUNDLES_ECDSA_P256_PUBLIC_KEY_H_ #define COMPONENTS_WEB_PACKAGE_SIGNED_WEB_BUNDLES_ECDSA_P256_PUBLIC_KEY_H_ #include <array> #include <cstdint> #include <optional> #include <string> #include "base/containers/span.h" #include "base/types/expected.h" #include "mojo/public/cpp/bindings/default_construct_tag.h" namespace web_package { // Wrapper class around an ECDSA P-256 public key. class EcdsaP256PublicKey { … }; } // namespace web_package #endif // COMPONENTS_WEB_PACKAGE_SIGNED_WEB_BUNDLES_ECDSA_P256_PUBLIC_KEY_H_