Releases: OneOfOne/xxhash
Releases · OneOfOne/xxhash
The pink stars are falling in lines
Where's the hash?
- Adding
NewHash{32,64}
that returnshash.Hash
Workarounds workarounds workarounds
Workaround Go 1.14's checkptr.
Fixes #27
go.mod clean up and added xxhsum windows binaries.
- Set go version in all the
go.mod
files to1.11
. - Made
xxhsum
andcesper
benchmarks their own modules to reducego.mod
/go.sum
bloat. - Published
win32
andwin64
binaries forxxhsum
, fixes #26.
s390x
MIPS fix
It's vgo time!
Tiny minor release, added go.mod.
v1.2.1
Don't blink.
Major optimization to the "safe" version.
v1.0: Don't turn your back, don't look away and don't blink.
I believe xxhash is now stable enough to warrant a v1.0 tag, so here's the first official release.
Features
- xxhsum command to hash files and check their hashes from the command line.
- The native version is optimized and is as fast as you can get in pure Go.
- On Go tip (using SSA), the native go version is faster than the C version.
- The native version falls back to a less optimized version on appengine (it uses unsafe).
- Both the native version and the cgo version supports 64bit and 32bit versions of the algorithm.
- When using the cgo version, it will automatically fallback to the native version if cgo isn't available, you can check the xxhash.Backend const.