github.com/turingchain2020/turingchain@v1.1.21/common/crypto/sha3/xor.go (about)

     1  // Copyright Turing Corp. 2018 All Rights Reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  // Copyright 2015 The Go Authors. All rights reserved.
     6  // Use of this source code is governed by a BSD-style
     7  // license that can be found in the LICENSE file.
     8  
     9  // +build !amd64,!386,!ppc64le appengine
    10  
    11  package sha3
    12  
    13  var (
    14  	xorIn            = xorInGeneric
    15  	copyOut          = copyOutGeneric
    16  	xorInUnaligned   = xorInGeneric
    17  	copyOutUnaligned = copyOutGeneric
    18  )
    19  
    20  //const xorImplementationUnaligned = "generic"