aboutsummaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/crypto/blake2s/blake2s_ref.go
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net> 2018-08-26 16:43:53 -0700
committerGravatar Frédéric Guillot <fred@miniflux.net> 2018-08-26 16:43:53 -0700
commita3f3f51c60e91f22cc57ecc23cf828421d46b6b7 (patch)
treee037378ae0ca1f09cfb0eb46e289f28f857c2aed /vendor/golang.org/x/crypto/blake2s/blake2s_ref.go
parenta9e9c347f4d385b4a297a45be96cddfc3a1c7814 (diff)
downloadv2-a3f3f51c60e91f22cc57ecc23cf828421d46b6b7.tar.gz
v2-a3f3f51c60e91f22cc57ecc23cf828421d46b6b7.tar.zst
v2-a3f3f51c60e91f22cc57ecc23cf828421d46b6b7.zip
Migrate to go modules (Go 1.11)
Diffstat (limited to 'vendor/golang.org/x/crypto/blake2s/blake2s_ref.go')
-rw-r--r--vendor/golang.org/x/crypto/blake2s/blake2s_ref.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/vendor/golang.org/x/crypto/blake2s/blake2s_ref.go b/vendor/golang.org/x/crypto/blake2s/blake2s_ref.go
deleted file mode 100644
index a3112734..00000000
--- a/vendor/golang.org/x/crypto/blake2s/blake2s_ref.go
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2016 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 gccgo appengine
-
-package blake2s
-
-var (
- useSSE4 = false
- useSSSE3 = false
- useSSE2 = false
-)
-
-func hashBlocks(h *[8]uint32, c *[2]uint32, flag uint32, blocks []byte) {
- hashBlocksGeneric(h, c, flag, blocks)
-}
avis: install linkerGravatar Jorge Aparicio 3-3/+31 2017-07-27fix warning on ARMv6-MGravatar Jorge Aparicio 1-1/+2 2017-07-27don't generate empty modulesGravatar Jorge Aparicio 1-11/+16 2017-07-27make task.$T.priority optionalGravatar Jorge Aparicio 1-20/+8 default the value to 1 if omitted 2017-07-27update tests and examplesGravatar Jorge Aparicio 17-230/+68 with task! gone 3 types of errors / gotchas have been eliminated :tada: 2017-07-27refactor Resource / Threshold into its own crate, drop task!, tweak rtfm::atomicGravatar Jorge Aparicio 3-154/+47 task! can be re-added in a backward compatible fashion and I'd like to not have two ways to assign a task handler to an interrupt / exception in the first release. rtfm::atomic now uses the `Threshold` token instead of the `CriticalSection` token. This reduces overhead by dropping the "are interrupts enabled?" check. 2017-07-26provide a Threshold token even when all resources are locklessGravatar Jorge Aparicio 1-7/+5 because the token will always be required for calling generic functions 2017-07-26fix around owned idle resourceGravatar Jorge Aparicio 1-1/+5 2017-07-25inline claimGravatar Jorge Aparicio 1-0/+1 because it's needed for proper optimization / inlining 2017-07-25fix errors around the use of `super` in relative pathsGravatar Jorge Aparicio 1-4/+4 2017-07-24more "hygiene"Gravatar Jorge Aparicio 1-8/+12 prepend an underscore to the name of the statics generated in the root of the crate