// Copyright 2022 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_ED25519_SIGNATURE_H_ #define COMPONENTS_WEB_PACKAGE_SIGNED_WEB_BUNDLES_ED25519_SIGNATURE_H_ #include <array> #include <optional> #include "base/containers/span.h" #include "base/gtest_prod_util.h" #include "base/types/expected.h" #include "components/web_package/signed_web_bundles/ed25519_public_key.h" #include "mojo/public/cpp/bindings/default_construct_tag.h" namespace web_package { // Wrapper class around an Ed25519 signature. class Ed25519Signature { … }; } // namespace web_package #endif // COMPONENTS_WEB_PACKAGE_SIGNED_WEB_BUNDLES_ED25519_SIGNATURE_H_