crypto/sha3: Copy latest code from "golang.org/x/crypto/sha3"

Revision: 1f22c0103821b9390939b6776727195525381532
This commit is contained in:
Ricardo Catalinas Jiménez
2016-02-21 22:05:00 +00:00
parent 0a1da69fac
commit e4b138a593
13 changed files with 1269 additions and 0 deletions

16
crypto/sha3/xor.go Normal file
View File

@ -0,0 +1,16 @@
// Copyright 2015 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 !amd64,!386 appengine
package sha3
var (
xorIn = xorInGeneric
copyOut = copyOutGeneric
xorInUnaligned = xorInGeneric
copyOutUnaligned = copyOutGeneric
)
const xorImplementationUnaligned = "generic"