chromium/services/network/trust_tokens/boringssl_trust_token_state.cc

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "services/network/trust_tokens/boringssl_trust_token_state.h"

#include <memory>

#include "base/memory/ptr_util.h"
#include "base/numerics/safe_conversions.h"
#include "services/network/public/mojom/trust_tokens.mojom-shared.h"
#include "third_party/boringssl/src/include/openssl/base.h"
#include "third_party/boringssl/src/include/openssl/trust_token.h"

namespace network {

std::unique_ptr<BoringsslTrustTokenState> BoringsslTrustTokenState::Create(
    mojom::TrustTokenProtocolVersion issuer_configured_version,
    int issuer_configured_batch_size) {}

BoringsslTrustTokenState::~BoringsslTrustTokenState() = default;

BoringsslTrustTokenState::BoringsslTrustTokenState(
    bssl::UniquePtr<TRUST_TOKEN_CLIENT> ctx)
    :{}

TRUST_TOKEN_CLIENT* BoringsslTrustTokenState::Get() const {}

}  // namespace network