#include "components/web_package/signed_web_bundles/ecdsa_p256_utils.h"
#include <array>
#include <vector>
#include "base/containers/span.h"
#include "base/test/gmock_expected_support.h"
#include "components/web_package/signed_web_bundles/ecdsa_p256_public_key.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace web_package {
namespace {
constexpr std::string_view kMessage = …;
constexpr std::string_view kOtherMessage = …;
constexpr std::array<uint8_t, EcdsaP256PublicKey::kLength> kEcdsaP256PublicKey = …;
constexpr std::array<uint8_t, 72> kEcdsa256Signature = …;
constexpr std::array<uint8_t, 72> kInvalidSignature = …;
}
TEST(EcdsaP256UtilsTest, VerifyMessageSignedWithEcdsaP256SHA256) { … }
}