Release v0.1.0

This commit is contained in:
Manu Herrera
2019-10-01 12:22:30 -03:00
parent 41e6aad190
commit d301c63596
915 changed files with 378049 additions and 11 deletions

31
vendor/github.com/aead/siphash/siphash_386.go generated vendored Normal file
View File

@@ -0,0 +1,31 @@
// Copyright (c) 2017 Andreas Auernhammer. All rights reserved.
// Use of this source code is governed by a license that can be
// found in the LICENSE file.
// +build 386, !gccgo, !appengine
package siphash
var useSSE2 = supportsSSE2()
//go:noescape
func supportsSSE2() bool
//go:noescape
func coreSSE2(hVal *[4]uint64, msg []byte)
func core(hVal *[4]uint64, msg []byte) {
if useSSE2 {
coreSSE2(hVal, msg)
} else {
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)
}