You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Other hashes like SHA512 or MD5 support creating a hash from an IO stream.
This allows you to take input at a remote network location, and create a hash for it reading it a chunk at a time, without having to write it to disk first, or ever have to keep it in it's entirety in memory, and creating the digest as you go.
Other hashes like SHA512 or MD5 support creating a hash from an IO stream.
This allows you to take input at a remote network location, and create a hash for it reading it a chunk at a time, without having to write it to disk first, or ever have to keep it in it's entirety in memory, and creating the digest as you go.
For instance, with stdlib:
(I think I understand that this will not actually hold the whole source in memory, although correct me if I'm wrong!)
Is this possible with the blake2b algorithm? Could it be made possible with this gem?
The text was updated successfully, but these errors were encountered: