jzelinskie / whirlpool

whirlpool cryptographic hashing library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

whirlpool.go

A whirlpool hashing library for go

Build status

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

About

whirlpool cryptographic hashing library

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Go 100.0%