UNPKG

merkle-tree-lib

Version:

Merkle Tree implementation with BIP340 tagged hash support.

9 lines (8 loc) 369 B
/** * Hash module for Merkle Tree Library * Provides hash strategies and functionality for cryptographic hashing */ export { HashStrategy } from './HashStrategy'; export { HashStrategyType, HashStrategyFactory } from './factory'; export { Sha256Strategy } from './strategies/Sha256Strategy'; export { TaggedSha256Strategy } from './strategies/TaggedSha256Strategy';