Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Merkle tree in functional style

License

NotificationsYou must be signed in to change notification settings

artem0/merkle-tree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Merkle trees are typically implemented as binary trees where each non-leaf node is a hash of the two nodes below it.
The leaves can either be the data itself or a hash/signature of the data.

Build StatusTest CoverageLicense

API

The whole picture:

importcom.github.merkle.conversion.Conversion._// Anything convertible to a sequence of bytes, e.g. protobuf/avro/parquetvalleaf1= leaf("1","MD5")valleaf2="c81e728d9d4c2f636f067f89cc14862c"valleaf3="3" getBytesvalleaf4=Array[Byte](59,66,1,55)valleafs:Seq[BlockView]=Seq(leaf1, leaf2, leaf3, leaf4)valtree=MerkleTree(leafs,"MD5")TreeTraverse.inorderRecursive(tree)valroot= tree.rootHash

Convenient API for leafs:

  • Hashes:
valhashLeaf="c81e728d9d4c2f636f067f89cc14862c"
  • String with digest:
valstringWithDigest= leaf("1","MD5")
  • Bytes + postfix notation:
valbytes1="3".getBytes()valbytes2="3" getBytesvalbytes3=Array[Byte](59,66,1,55)
  • Anything which can be converted to bytes withtwitter bijection, for example:

  • thrift/protobuf/avro

  • GZippedBytes /GZippedBase64String

  • Base64String

  • java.nio.ByteBuffer

Overview

Merkle trees are typically implemented as binary trees where each non-leaf node is a hash of the two nodes below it.The leaves can either be the data itself or a hash/signature of the data.

Merkle trees is often used in distributed systems for file integrity/verification purposes:

Releases

No releases published

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp