merkle-tree-lib
Version:
Merkle Tree implementation with BIP340 tagged hash support.
13 lines (10 loc) • 437 B
text/typescript
/**
* Hash module for Merkle Tree Library
* Provides hash strategies and functionality for cryptographic hashing
*/
// Export interfaces and types
export { HashStrategy } from './HashStrategy';
export { HashStrategyType, HashStrategyFactory } from './factory';
// Export strategy implementations
export { Sha256Strategy } from './strategies/Sha256Strategy';
export { TaggedSha256Strategy } from './strategies/TaggedSha256Strategy';