File: merkle_tree_math.cc

package info (click to toggle)
golang-github-google-certificate-transparency 0.0~git20160709.0.0f6e3d1~ds1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 5,676 kB
  • sloc: cpp: 35,278; python: 11,838; java: 1,911; sh: 1,885; makefile: 950; xml: 520; ansic: 225
file content (29 lines) | stat: -rw-r--r-- 839 bytes parent folder | download
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
28
29
#include "merkletree/merkle_tree_math.h"

#include <stddef.h>

// static
bool MerkleTreeMath::IsPowerOfTwoPlusOne(size_t leaf_count) {
  if (leaf_count == 0)
    return false;
  if (leaf_count == 1)
    return true;
  // leaf_count is a power of two plus one if and only if
  // ((leaf_count -1) & (leaf_count - 2)) has no bits set.
  return (((leaf_count - 1) & (leaf_count - 2)) == 0);
}

// Index of the parent node in the parent level of the tree.
size_t MerkleTreeMath::Parent(size_t leaf) {
  return leaf >> 1;
}

// True if the node is a right child; false if it is the left (or only) child.
bool MerkleTreeMath::IsRightChild(size_t leaf) {
  return leaf & 1;
}

// Index of the node's (left or right) sibling in the same level.
size_t MerkleTreeMath::Sibling(size_t leaf) {
  return IsRightChild(leaf) ? (leaf - 1) : (leaf + 1);
}