chromium/components/web_package/signed_web_bundles/ecdsa_p256_public_key.cc

// 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.

#include "components/web_package/signed_web_bundles/ecdsa_p256_public_key.h"

#include "base/containers/span.h"
#include "base/ranges/algorithm.h"
#include "base/strings/stringprintf.h"
#include "components/web_package/signed_web_bundles/ecdsa_p256_utils.h"

namespace web_package {

EcdsaP256PublicKey::~EcdsaP256PublicKey() = default;

base::expected<EcdsaP256PublicKey, std::string> EcdsaP256PublicKey::Create(
    base::span<const uint8_t> bytes) {}

EcdsaP256PublicKey::EcdsaP256PublicKey(std::array<uint8_t, kLength> bytes)
    :{}

}  // namespace web_package