2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-05 02:20:50 +00:00
restic/vendor/golang.org/x/crypto/blake2b/blake2b_amd64.go

25 lines
566 B
Go
Raw Normal View History

2017-07-23 12:24:45 +00:00
// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build !go1.7,amd64,!gccgo,!appengine
package blake2b
2018-05-07 20:47:39 +00:00
import "golang.org/x/sys/cpu"
2017-07-23 12:24:45 +00:00
func init() {
2018-05-07 20:47:39 +00:00
useSSE4 = cpu.X86.HasSSE41
2017-07-23 12:24:45 +00:00
}
//go:noescape
func hashBlocksSSE4(h *[8]uint64, c *[2]uint64, flag uint64, blocks []byte)
func hashBlocks(h *[8]uint64, c *[2]uint64, flag uint64, blocks []byte) {
if useSSE4 {
hashBlocksSSE4(h, c, flag, blocks)
} else {
hashBlocksGeneric(h, c, flag, blocks)
}
}