diff options
| author | Tamir Duberstein <tamird@google.com> | 2020-11-13 09:41:55 -0500 |
|---|---|---|
| committer | Filippo Valsorda <filippo@golang.org> | 2020-12-03 16:30:18 +0000 |
| commit | be400aefbc4c83e9aab51e82b8d4b12760653b47 (patch) | |
| tree | 26c94f9f114e30067c05e9d7b0fea47c8c6a8289 /sha3 | |
| parent | c8d3bf9c5392d5f66747f112cd55055d7a530b19 (diff) | |
| download | go-x-crypto-be400aefbc4c83e9aab51e82b8d4b12760653b47.tar.xz | |
all: build tags: appengine,!gccgo => purego,gc
appengine is obsolete and superseded by purego, and gc is a more
precise tag for files that use gc-syntax assembly.
Change-Id: I716f59de772ebeee4adf4d2a432edf300122cef0
Reviewed-on: https://go-review.googlesource.com/c/crypto/+/269920
Trust: Ian Lance Taylor <iant@golang.org>
Run-TryBot: Filippo Valsorda <filippo@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Filippo Valsorda <filippo@golang.org>
Diffstat (limited to 'sha3')
| -rw-r--r-- | sha3/hashes_generic.go | 2 | ||||
| -rw-r--r-- | sha3/keccakf.go | 2 | ||||
| -rw-r--r-- | sha3/keccakf_amd64.go | 2 | ||||
| -rw-r--r-- | sha3/keccakf_amd64.s | 2 | ||||
| -rw-r--r-- | sha3/sha3_s390x.go | 2 | ||||
| -rw-r--r-- | sha3/sha3_s390x.s | 2 | ||||
| -rw-r--r-- | sha3/shake_generic.go | 2 | ||||
| -rw-r--r-- | sha3/xor.go | 2 | ||||
| -rw-r--r-- | sha3/xor_unaligned.go | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/sha3/hashes_generic.go b/sha3/hashes_generic.go index f455147..fac0c0e 100644 --- a/sha3/hashes_generic.go +++ b/sha3/hashes_generic.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 gccgo appengine !s390x +// +build !gc purego !s390x package sha3 diff --git a/sha3/keccakf.go b/sha3/keccakf.go index 46d03ed..92b63a3 100644 --- a/sha3/keccakf.go +++ b/sha3/keccakf.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 appengine gccgo +// +build !amd64 purego !gc package sha3 diff --git a/sha3/keccakf_amd64.go b/sha3/keccakf_amd64.go index 7886795..3e3e760 100644 --- a/sha3/keccakf_amd64.go +++ b/sha3/keccakf_amd64.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,!appengine,!gccgo +// +build amd64,!purego,gc package sha3 diff --git a/sha3/keccakf_amd64.s b/sha3/keccakf_amd64.s index f88533a..8f4d187 100644 --- a/sha3/keccakf_amd64.s +++ b/sha3/keccakf_amd64.s @@ -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,!appengine,!gccgo +// +build amd64,!purego,gc // This code was translated into a form compatible with 6a from the public // domain sources at https://github.com/gvanas/KeccakCodePackage diff --git a/sha3/sha3_s390x.go b/sha3/sha3_s390x.go index 259ff4d..485e2d5 100644 --- a/sha3/sha3_s390x.go +++ b/sha3/sha3_s390x.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 !gccgo,!appengine +// +build gc,!purego package sha3 diff --git a/sha3/sha3_s390x.s b/sha3/sha3_s390x.s index 8a4458f..e2df641 100644 --- a/sha3/sha3_s390x.s +++ b/sha3/sha3_s390x.s @@ -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 !gccgo,!appengine +// +build gc,!purego #include "textflag.h" diff --git a/sha3/shake_generic.go b/sha3/shake_generic.go index add4e73..68148f2 100644 --- a/sha3/shake_generic.go +++ b/sha3/shake_generic.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 gccgo appengine !s390x +// +build !gc purego !s390x package sha3 diff --git a/sha3/xor.go b/sha3/xor.go index 079b650..ddafa82 100644 --- a/sha3/xor.go +++ b/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,!ppc64le appengine +// +build !amd64,!386,!ppc64le purego package sha3 diff --git a/sha3/xor_unaligned.go b/sha3/xor_unaligned.go index 5f19cdf..6249ad8 100644 --- a/sha3/xor_unaligned.go +++ b/sha3/xor_unaligned.go @@ -3,7 +3,7 @@ // license that can be found in the LICENSE file. // +build amd64 386 ppc64le -// +build !appengine +// +build !purego package sha3 |
