Files
muun-recovery/vendor/github.com/aead/siphash/siphash_ref.go
Manu Herrera d301c63596 Release v0.1.0
2019-10-01 12:22:30 -03:00

20 lines
511 B
Go

// 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.
// +build !amd64,!386 gccgo appengine nacl
package siphash
func core(hVal *[4]uint64, msg []byte) {
genericCore(hVal, msg)
}
func finalize64(hVal *[4]uint64, block *[BlockSize]byte) uint64 {
return genericFinalize64(hVal, block)
}
func finalize128(tag *[16]byte, hVal *[4]uint64, block *[BlockSize]byte) {
genericFinalize128(tag, hVal, block)
}