mirror of
https://github.com/muun/recovery.git
synced 2025-02-23 11:32:33 -05:00
20 lines
511 B
Go
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)
|
|
}
|