brandondahler / Data.HashFunction

C# library to create a common interface to non-cryptographic hash functions.
MIT License
255 stars 42 forks source link

Support an overload with stream #23

Closed fleed closed 8 years ago

fleed commented 8 years ago

Is it possible to support an overload that accepts a Stream, for bigger files?

DoCode commented 6 years ago

What about this?

brandondahler commented 6 years ago

What about it? IHashFunction and IHashFunctionAsync has ComputeHash functions that take a byte array or a Stream.

On Jun 15, 2018, at 6:24 AM, DoCode notifications@github.com wrote:

What about this?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

DoCode commented 6 years ago

Ah sorry. What I mean, what I need, is block precessing like all .NET hash algorythm provide.

brandondahler commented 6 years ago

Can open a new issue with some basic pseudo code you’d like to see and the overall goal you’re trying to achieve?

On Jun 16, 2018, at 12:52 AM, DoCode notifications@github.com wrote:

Ah sorry. What I mean, what I need, is block precessing like all .NET hash algorythm provide.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub, or mute the thread.

DoCode commented 6 years ago

@brandondahler thanks. I created a new issue: #37