You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Captain Dero a390b5e235 Status update release 1 6 years ago
..
.gitignore Status update release 1 6 years ago
README.md Status update release 1 6 years ago
makefile Status update release 1 6 years ago
skein.go Status update release 1 6 years ago
skein_consts.go Status update release 1 6 years ago

README.md

FastGoSkein

A go port of the skein hash function originally written in C from https://github.com/cberner/xkcd_miner. Ive made a few tweaks an optimizations on the original code for added performance. Note: Its still not as fast as the original, but I will continue to chip away at optimizations as much as I can!

#Use:

Install the package with go get

go get github.com/whyrusleeping/FastGoSkein

Import it in your golang code

import "github.com/whyrusleeping/FastGoSkein"

And use it!

toHash := []byte("This is a super secret keyphrase to be hashed!")
sk := new(skein.Skein1024)
sk.Init(1024)
sk.Update(toHash)
outputBuffer := make([]byte, 128)
sk.Final(outputBuffer)

//Nice hex formatting from encoding/hex
fmt.Println(hex.EncodeToString(outputBuffer))