Beispiel #1
0
def main():
    data = []
    tree = MerkleTree(data, hashfunc)
    for i in ascii_lowercase:
        tree.append(i)

    beautify(tree)

    print("Original verify_leaf_inclusion")
    original_proof = tree.get_proof('a')
    print(tree.verify_leaf_inclusion('a', original_proof))

    print("Proof to lists/ Lists to proof verify_leaf_inclusion")
    root = tree._root
    proof_hashs, proof_types = proof_to_lists(original_proof)
    remade_proof = lists_to_proof(proof_hashs, proof_types)
    print(
        merklelib.verify_leaf_inclusion('a', remade_proof, hashfunc,
                                        utils.to_hex(root.hash)))

    print("Proof to string test")
    string_proof = proof_to_string(original_proof)
    print(type(string_proof) == type("hello"))

    print("Proof to string/ String to proof verify_leaf_inclusion")
    new_proof = string_to_proof(string_proof)
    print(
        merklelib.verify_leaf_inclusion('a', remade_proof, hashfunc,
                                        utils.to_hex(root.hash)))
Beispiel #2
0
import string
import hashlib

from merklelib import MerkleTree, beautify

data = ('A','B','C','D')

# build a Merkle tree for the data
tree = MerkleTree(data)

# generate an audit proof for the element 'C'
proof = tree.get_proof('C')

# now verify that C is in the tree
if tree.verify_leaf_inclusion('C', proof):
  print('C is in the tree')
else:
  print('C is not in the tree')

# generate an audit proof for the element 'E'
proof = tree.get_proof('E')

# now verify that E is not in the tree
if tree.verify_leaf_inclusion('E', proof):
  print('E is in the tree')
else:
  print('E is not in the tree')

# perform a consistency check by checking if the new tree 
# contains the same items and in the same order as the old one
Beispiel #3
0
def main():
  parser = argparse.ArgumentParser()
  parser.add_argument(
    '-s', '--size',
    help='Initial number of leaves',
    dest='size',
    default=2 ** 8
  )

  parser.add_argument(
    '-a', '--additional',
    help='Number of leaves that we need to append',
    dest='additional',
    default=2 ** 1
  )

  parser.add_argument(
    '-p', '--print',
    help='''
     Beautify the whole tree.
     Recommended to use when the size of the tree is less than 10.
     ''',
    action='store_true',
    dest='printable'
  )

  args = parser.parse_args()
  start, end = int(args.size), int(args.additional)
  count = start + end

  start_t = datetime.now()

  tree = MerkleTree(value for value in range(start))

  print(f'Building: {_get_seconds(start_t)} seconds.')
  start_t = datetime.now()

  # appending
  for v in range(start, start + end):
    tree.append(v)

  print(f'Appending: {_get_seconds(start_t)} seconds.')
  print(f'Tree size: {getsize(tree)}')
  print(f'Number of leaves: {len(tree)}')

  if args.printable:
    beautify(tree)

  start_t = datetime.now()

  total, start_t = 0.0, datetime.now()
  max_t = min_t = None
  for leaf in range(count):
    cycle_t = datetime.now()
    proof = tree.get_proof(leaf)
    if not tree.verify_leaf_inclusion(leaf, proof):
      exit(f'Failed audit proof: {leaf}')
    seconds = _get_seconds(cycle_t)
    if max_t is None:
      max_t = min_t = seconds
    else:
      max_t = max(max_t, seconds)
      min_t = min(min_t, seconds)
    total += seconds

  print(f'Audit proof verification times:')
  _print_times(
    average=(total / float(count)),
    total=_get_seconds(start_t),
    max_t=max_t,
    min_t=min_t
  )

  total, start_t = 0.0, datetime.now()
  max_t = min_t = None
  for limit in range(1, count):
    cycle_t = datetime.now()
    test = MerkleTree([value for value in range(limit)])
    if tree < test:
      exit(f'Failed consistency proof: {limit}')
    seconds = _get_seconds(cycle_t)
    if max_t is None:
      max_t = min_t = seconds
    else:
      max_t = max(max_t, seconds)
      min_t = min(min_t, seconds)
    total += seconds

  print(f'Consitency proof verification times ({count} trees):')
  _print_times(
    average=(total / float(count)),
    total=_get_seconds(start_t),
    max_t=max_t,
    min_t=min_t
  )
Beispiel #4
0
"""

import string
import hashlib
import merklelib
from merklelib import MerkleTree

def hashfunc(value):
    return hashlib.sha256(value).hexdigest()

data = list(string.ascii_letters)

tree = MerkleTree(data, hashfunc)

proof = tree.get_proof('A')

if tree.verify_leaf_inclusion('A', proof):
    print('A is in the tree')
else:
    print('A is not in the tree')
    
    
MR = tree.merkle_root


kappa = merklelib.verify_leaf_inclusion('A', proof, hashfunc, MR)


from merklelib import utils

keepo = hashfunc(b'\x00' + utils.to_string('a'))
# Print MerkleTree
print("\nPrinting Merkle Tree")
beautify(asciiTree)
print("\nPrinting root")
print(asciiTree.merkle_root)
print("\nPrinting leaves")
print(asciiTree.leaves)

# Generate an audit proof the letter a
print("\nGenerating audit proof for a")
proof = asciiTree.get_proof('a')
print("\nProof: ")
print(proof)

# Verify that a is in the tree
if asciiTree.verify_leaf_inclusion('a', proof):
  print('\na is in the tree')
else:
  exit('a is not in the tree')

# Add in longer string hash to test
new_hash = "rgie3948guhiev"
asciiTree.append(new_hash)

# Generate an audit proof for the string
print("\nGenerating audit proof for rgie3948guhiev")
proof = asciiTree.get_proof('rgie3948guhiev')
print("\nProof: ")
print(proof)

# Verify that rgie3948guhiev is in the tree