go-multihash icon indicating copy to clipboard operation
go-multihash copied to clipboard

Multihash implementation in Go

Results 18 go-multihash issues
Sort by recently updated
recently updated
newest added

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...

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.

P3

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...