https://github.com/zxdev/xxhash
XXH64 as a single function call
https://github.com/zxdev/xxhash
xxhash
Last synced: 5 months ago
JSON representation
XXH64 as a single function call
- Host: GitHub
- URL: https://github.com/zxdev/xxhash
- Owner: zxdev
- License: mit
- Created: 2022-06-12T19:39:54.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-07-11T21:46:49.000Z (almost 2 years ago)
- Last Synced: 2024-07-11T23:58:44.440Z (almost 2 years ago)
- Topics: xxhash
- Language: Go
- Homepage:
- Size: 1.95 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# xxhash
The ```xxhash``` package implements the 64-bit variant of xxHash (XXH64) as described at http://cyan4973.github.io/xxHash/ without any Go standard library package dependancy nor any hash.Hash interface components.
```golang
// signatures
Sum(b []byte) uint64
SSum(s string) uint64
```
The minimalist approach is clean and consise and simple to use with no additional code overhead.