diff options
author | Felix Lange <fjl@twurst.com> | 2016-10-02 03:02:57 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2016-10-02 03:26:43 +0800 |
commit | 54ea317375273c8bb558194eb04c73925da9ac14 (patch) | |
tree | 92b3aa79c040930bc3f5c37c978589bd7082ac12 /crypto/sha3/xor.go | |
parent | 0731b44809f72ed5880dc3654ee70ae85420bd77 (diff) | |
download | go-tangerine-54ea317375273c8bb558194eb04c73925da9ac14.tar go-tangerine-54ea317375273c8bb558194eb04c73925da9ac14.tar.gz go-tangerine-54ea317375273c8bb558194eb04c73925da9ac14.tar.bz2 go-tangerine-54ea317375273c8bb558194eb04c73925da9ac14.tar.lz go-tangerine-54ea317375273c8bb558194eb04c73925da9ac14.tar.xz go-tangerine-54ea317375273c8bb558194eb04c73925da9ac14.tar.zst go-tangerine-54ea317375273c8bb558194eb04c73925da9ac14.zip |
crypto/sha3: update from golang.org/x/crypto/sha3 a 80b25ed4
This pulls in the assembly implementation of keccakf1600 for amd64.
Diffstat (limited to 'crypto/sha3/xor.go')
-rw-r--r-- | crypto/sha3/xor.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/sha3/xor.go b/crypto/sha3/xor.go index d622979c1..46a0d63a6 100644 --- a/crypto/sha3/xor.go +++ b/crypto/sha3/xor.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build !amd64,!386 appengine +// +build !amd64,!386,!ppc64le appengine package sha3 |