mirror of
https://github.com/codex-storage/nim-codex.git
synced 2025-01-09 20:45:38 +00:00
52c5578c46
* rework merkle tree support * deps * rename merkletree -> codexmerkletree * treed and proof encoding/decoding * small change to invoke proof verification * rename merkletree to codexmerkletree * style * adding codex merkle and coders tests * fixup imports * remove new codecs for now * bump deps * adding trace statement * properly serde of manifest block codecs * use default hash codec * add more trace logging to aid debugging * misc * remove double import * revert un-needded change * proof size changed * bump poseidon2 * add from nodes test * shorte file names * remove upraises * wip poseidon tree * adjust file names * misc * shorten file names * fix bad `elements` iter * don't do asserts * add fromNodes and converters * root and getProof now return result * add poseidon2 tree tests * root now returns result * misc * had to make merkletree a ref, because nim blows up otherwise * root returns a result * root returns a result * import poseidon tests * bump * merkle poseidon2 digest * misc * add merkle digest tests * bump * don't use checksuite * Update tests/codex/merkletree/generictreetests.nim Co-authored-by: markspanbroek <mark@spanbroek.net> Signed-off-by: Dmitriy Ryajov <dryajov@gmail.com> * Update codex/merkletree/merkletree.nim Co-authored-by: markspanbroek <mark@spanbroek.net> Signed-off-by: Dmitriy Ryajov <dryajov@gmail.com> * Update codex/merkletree/merkletree.nim Co-authored-by: markspanbroek <mark@spanbroek.net> Signed-off-by: Dmitriy Ryajov <dryajov@gmail.com> * Update tests/codex/merkletree/generictreetests.nim Co-authored-by: markspanbroek <mark@spanbroek.net> Signed-off-by: Dmitriy Ryajov <dryajov@gmail.com> * missing return * make toBool private (it's still needed otherwise comparison won't work) * added `digestTree` that returns a tree and `digest` for root * test against both poseidon trees - codex and poseidon2 * shorten merkle tree names * don't compare trees - it's going to be too slow * move comparison to mekrle helper * remove merkle utils --------- Signed-off-by: Dmitriy Ryajov <dryajov@gmail.com> Co-authored-by: markspanbroek <mark@spanbroek.net>
54 lines
1.3 KiB
Nim
54 lines
1.3 KiB
Nim
## Nim-Codex
|
|
## Copyright (c) 2021 Status Research & Development GmbH
|
|
## Licensed under either of
|
|
## * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
|
|
## * MIT license ([LICENSE-MIT](LICENSE-MIT))
|
|
## at your option.
|
|
## This file may not be copied, modified, or distributed except according to
|
|
## those terms.
|
|
|
|
import std/hashes
|
|
import std/sequtils
|
|
import pkg/stew/endians2
|
|
|
|
import message
|
|
|
|
import ../../blocktype
|
|
|
|
export Message, protobufEncode, protobufDecode
|
|
export Wantlist, WantType, WantListEntry
|
|
export BlockDelivery, BlockPresenceType, BlockPresence
|
|
export AccountMessage, StateChannelUpdate
|
|
|
|
proc hash*(a: BlockAddress): Hash =
|
|
if a.leaf:
|
|
let data = a.treeCid.data.buffer & @(a.index.uint64.toBytesBE)
|
|
hash(data)
|
|
else:
|
|
hash(a.cid.data.buffer)
|
|
|
|
proc hash*(e: WantListEntry): Hash =
|
|
hash(e.address)
|
|
|
|
proc contains*(a: openArray[WantListEntry], b: BlockAddress): bool =
|
|
## Convenience method to check for peer precense
|
|
##
|
|
|
|
a.anyIt(it.address == b)
|
|
|
|
proc `==`*(a: WantListEntry, b: BlockAddress): bool =
|
|
return a.address == b
|
|
|
|
proc `<`*(a, b: WantListEntry): bool =
|
|
a.priority < b.priority
|
|
|
|
|
|
proc `==`*(a: BlockPresence, b: BlockAddress): bool =
|
|
return a.address == b
|
|
|
|
proc contains*(a: openArray[BlockPresence], b: BlockAddress): bool =
|
|
## Convenience method to check for peer precense
|
|
##
|
|
|
|
a.anyIt(it.address == b)
|