|
|
// Copyright (c) 2016 Andreas Auernhammer. All rights reserved.
// Use of this source code is governed by a license that can be
// found in the LICENSE file.
// Package skein256 implements the Skein256 hash function
// based on the Threefish256 tweakable block cipher.
package skein256
import ( "hash"
"github.com/aead/skein" )
// Sum512 computes the 512 bit Skein256 checksum (or MAC if key is set) of msg
// and writes it to out. The key is optional and can be nil.
func Sum512(out *[64]byte, msg, key []byte) { var out256 [32]byte
s := new(hashFunc) s.initialize(64, &skein.Config{Key: key})
s.Write(msg)
s.finalizeHash()
s.output(&out256, 0) copy(out[:], out256[:]) s.output(&out256, 1) copy(out[32:], out256[:]) }
// Sum384 computes the 384 bit Skein256 checksum (or MAC if key is set) of msg
// and writes it to out. The key is optional and can be nil.
func Sum384(out *[48]byte, msg, key []byte) { var out256 [32]byte
s := new(hashFunc) s.initialize(48, &skein.Config{Key: key})
s.Write(msg)
s.finalizeHash()
s.output(&out256, 0) copy(out[:], out256[:]) s.output(&out256, 1) copy(out[32:], out256[:16]) }
// Sum256 computes the 256 bit Skein256 checksum (or MAC if key is set) of msg
// and writes it to out. The key is optional and can be nil.
func Sum256(out *[32]byte, msg, key []byte) { s := new(hashFunc) s.initialize(32, &skein.Config{Key: key})
s.Write(msg)
s.finalizeHash() s.output(out, 0) }
// Sum160 computes the 160 bit Skein256 checksum (or MAC if key is set) of msg
// and writes it to out. The key is optional and can be nil.
func Sum160(out *[20]byte, msg, key []byte) { var out256 [32]byte s := new(hashFunc) s.initialize(20, &skein.Config{Key: key})
s.Write(msg)
s.finalizeHash() s.output(&out256, 0)
copy(out[:], out256[:20]) }
// Sum returns the Skein256 checksum with the given hash size of msg using the (optional)
// conf for configuration. The hashsize must be > 0.
func Sum(msg []byte, hashsize int, conf *skein.Config) []byte { s := New(hashsize, conf) s.Write(msg) return s.Sum(nil) }
// New512 returns a hash.Hash computing the Skein256 512 bit checksum.
// The key is optional and turns the hash into a MAC.
func New512(key []byte) hash.Hash { s := new(hashFunc)
s.initialize(64, &skein.Config{Key: key})
return s }
// New256 returns a hash.Hash computing the Skein256 256 bit checksum.
// The key is optional and turns the hash into a MAC.
func New256(key []byte) hash.Hash { s := new(hashFunc)
s.initialize(32, &skein.Config{Key: key})
return s }
// New returns a hash.Hash computing the Skein256 checksum with the given hash size.
// The conf is optional and configurates the hash.Hash
func New(hashsize int, conf *skein.Config) hash.Hash { s := new(hashFunc) s.initialize(hashsize, conf) return s }
|