SeaHash: A fast, portable hash function in Rust
1–10 of 116 posts
Re: SeaHash: A fast, portable hash function in Rust
#2Re: SeaHash: A fast, portable hash function in Rust
#3BTW, the hyperlink for "reference" in the "Specification" section is broken.
Re: SeaHash: A fast, portable hash function in Rust
#4Great. But keep in mind that this is not a keyed hash function.
"Warning!
This is not a cryptographic function, and it certainly should not be used as one. If you want a good cryptograhic hash function, you should use SHA-3 (Keccak) or BLAKE2."
Re: SeaHash: A fast, portable hash function in Rust
#5Re: SeaHash: A fast, portable hash function in Rust
#6Re: SeaHash: A fast, portable hash function in Rust
#7Great to see another piece of code written in Rust. That said, how do you make claims of something being blazingly fast without any comparisons to implementations in other languages such as C or C++?
Re: SeaHash: A fast, portable hash function in Rust
#8I was trying to figure out how this is so much faster than FNV https://en.wikipedia.org/wiki/Fowler%E2%80%93Noll%E2%80%93Vo... Is it only because of the parallelism? Or are the operations really that much cheaper somehow?
Re: SeaHash: A fast, portable hash function in Rust
#9Great to see another piece of code written in Rust. That said, how do you make claims of something being blazingly fast without any comparisons to implementations in other languages such as C or C++?
Re: SeaHash: A fast, portable hash function in Rust
#10Great. But keep in mind that this is not a keyed hash function.