go-multihash
go-multihash copied to clipboard
Multihash implementation in Go
Currently Multihash is defined as: ``` type Multihash []byte ``` A multihash may be binary, but it is small and (I hope) immutable. In my view a `string` is a...
### this sucks ``` > multihash --help usage: multihash [options] [FILE] Print or check multihash checksums. With no FILE, or when FILE is -, read standard input. Options: -a string...
like hashpipe's
This makes it cleaner that this function doesn't return errors, shuts up linters complaining about ignoring errors etc. Considering go-multihash is v0.x.y, changing that signature should be fine.
Current impl lacks NEON, and the first party implementation is faster. I want to use https://github.com/minio/asm2plan9s or implement all the required missing instruction in go's dissassembler so we can translate...