richardschneider / net-ipfs-core

The core objects and interfaces of the interplanetary file system (IPFS)
https://richardschneider.github.io/net-ipfs-core/
MIT License
102 stars 58 forks source link

Hashing a stream #97

Closed richardschneider closed 5 years ago

richardschneider commented 5 years ago

As a developer I want to compute the hash of a stream So that I do not need to load all the data into memory

This should be possible in the current environment because hashing uses a HashAlgorithm that has a ComputeHash(Stream) method.