summaryrefslogtreecommitdiff
path: root/chromium/net/cert/merkle_consistency_proof.cc
blob: 02f2b181a3d2b9ab810966be4fcbc2435a198ace (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "net/cert/merkle_consistency_proof.h"

namespace net {

namespace ct {

MerkleConsistencyProof::MerkleConsistencyProof() {}

MerkleConsistencyProof::MerkleConsistencyProof(
    const std::string& log_id,
    const std::vector<std::string>& proof_nodes,
    uint64_t old_size,
    uint64_t new_size)
    : log_id(log_id),
      nodes(proof_nodes),
      first_tree_size(old_size),
      second_tree_size(new_size) {}

MerkleConsistencyProof::~MerkleConsistencyProof() {}

}  // namespace ct

}  // namespace net