Captain Dero a390b5e235 | 7 years ago | |
---|---|---|
.. | ||
aesr | 7 years ago | |
blake | 7 years ago | |
bmw | 7 years ago | |
cubed | 7 years ago | |
echo | 7 years ago | |
groest | 7 years ago | |
hash | 7 years ago | |
jhash | 7 years ago | |
keccak | 7 years ago | |
luffa | 7 years ago | |
nist | 7 years ago | |
shavite | 7 years ago | |
simd | 7 years ago | |
skein | 7 years ago | |
.directory | 7 years ago | |
.gitignore | 7 years ago | |
.gitlab-ci.yml | 7 years ago | |
license.md | 7 years ago | |
readme.md | 7 years ago | |
x11.go | 7 years ago | |
x11_test.go | 7 years ago |
Implements the x11 hash and required functions in go.
package main
import (
"fmt"
"gitlab.com/nitya-sattva/go-x11"
)
func main() {
hs, out := x11.New(), [32]byte{}
hs.Hash([]byte("DASH"), out[:])
fmt.Printf("%x \n", out[:])
}
Echo, Simd and Shavite do not have 100% test coverage, a full test on these requires the test to hash a blob of bytes that is several gigabytes large.
go-x11 is licensed under the copyfree ISC license.