2017-01-19 22:20:40 +00:00
|
|
|
// 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.
|
|
|
|
|
2017-10-20 09:38:03 +00:00
|
|
|
// +build !amd64,!386 appengine
|
2017-01-19 22:20:40 +00:00
|
|
|
|
|
|
|
package sha3
|
|
|
|
|
|
|
|
var (
|
|
|
|
xorIn = xorInGeneric
|
|
|
|
copyOut = copyOutGeneric
|
|
|
|
xorInUnaligned = xorInGeneric
|
|
|
|
copyOutUnaligned = copyOutGeneric
|
|
|
|
)
|
|
|
|
|
|
|
|
const xorImplementationUnaligned = "generic"
|