chromium/net/cert/merkle_audit_proof.cc

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

#include "net/cert/merkle_audit_proof.h"

#include "base/check_op.h"

namespace net::ct {

uint64_t CalculateAuditPathLength(uint64_t leaf_index, uint64_t tree_size) {}

MerkleAuditProof::MerkleAuditProof() = default;

MerkleAuditProof::MerkleAuditProof(const MerkleAuditProof& other) = default;

MerkleAuditProof::MerkleAuditProof(uint64_t leaf_index,
                                   uint64_t tree_size,
                                   const std::vector<std::string>& audit_path)
    :{}

MerkleAuditProof::~MerkleAuditProof() = default;

}  // namespace net::ct