How to use MurmurHash3 to hash a block of data incrementally?

我只是一个虾纸丫 提交于 2021-01-07 06:17:58

问题


I would like to use MurmurHash3 to uniquely identify large pieces of data. This implementation doesn't seem to provide a way to update the hash incrementally, though it seems to compute one separate hash per block of data given.

For example, if I were hashing 512MB of data from disk I might not want to load it all in memory at once, or if I were hashing an unknown amount of data from the network. How can I use MurmurHash3 for a large amount of data that has to be hashed incrementally? I am looking for something similar to SHA256_Update from OpenSSL.

来源:https://stackoverflow.com/questions/11874473/how-to-use-murmurhash3-to-hash-a-block-of-data-incrementally

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!