mirror of
https://github.com/muun/recovery.git
synced 2025-02-23 11:32:33 -05:00
19 lines
490 B
Go
19 lines
490 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, !gccgo, !appengine
|
||
|
|
||
|
package siphash
|
||
|
|
||
|
//go:noescape
|
||
|
func core(hVal *[4]uint64, msg []byte)
|
||
|
|
||
|
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)
|
||
|
}
|