mirror of
https://github.com/rclone/rclone.git
synced 2024-11-26 02:09:55 +08:00
.. | ||
.travis.yml | ||
const.go | ||
LICENSE | ||
README.md | ||
whirlpool.go |
whirlpool.go
A whirlpool hashing library for go
Build status
Setup
$ go get github.com/jzelinskie/whirlpool
Example
package main
import (
"fmt"
"github.com/jzelinskie/whirlpool"
)
func main() {
w := whirlpool.New()
text := []byte("This is an example.")
w.Write(text)
fmt.Println(w.Sum(nil))
}
Docs
Check out the gopkgdoc page, but there isn't much -- it works just like the other hashes in the standard library
Branches
- master - stable, works like the hash libs in the corelib
- trace - same code as master, but prints midstate values to stdout
license
Modified BSD License