Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aead/skein
The Skein hash function family based on the Threefish tweakable block cipher
https://github.com/aead/skein
cryptography go skein
Last synced: about 1 month ago
JSON representation
The Skein hash function family based on the Threefish tweakable block cipher
- Host: GitHub
- URL: https://github.com/aead/skein
- Owner: aead
- License: mit
- Created: 2016-07-22T08:26:25.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-07-22T08:48:43.000Z (over 8 years ago)
- Last Synced: 2024-06-19T03:02:26.397Z (5 months ago)
- Topics: cryptography, go, skein
- Language: Go
- Size: 23.4 KB
- Stars: 8
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Godoc Reference](https://godoc.org/github.com/aead/skein?status.svg)](https://godoc.org/github.com/aead/skein)
## The Skein hash function family
Skein is a cryptographic hash function family designed by Bruce Schneier, Niels Ferguson, Stefan Lucks,
Doug Whiting, Mihir Bellare, Tadayoshi Kohno, Jon Callas and Jesse Walker.Skein uses the tweakable block cipher Threefish in UBI chaining mode and can produce hash values of any length.
There exists three Skein variants:
- Skein-256 based on Threefish-256 with a block size of 256 bit.
- Skein-512 based on Threefish-512 with a block size of 512 bit. (This variant is recommended)
- Skein-1024 based on Threefish-1024 with a block size of 1024 bit. (Very conservative security level)### Installation
Install in your GOPATH: `go get -u github.com/aead/skein`