aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/sha3/register.go
diff options
context:
space:
mode:
authorRicardo Catalinas Jiménez <r@untroubled.be>2016-02-22 06:05:00 +0800
committerRicardo Catalinas Jiménez <r@untroubled.be>2016-02-22 06:34:34 +0800
commite4b138a5931b309805162610870df50165e61a8f (patch)
tree6f97b16fcffc263dfab7094a07288a0a28a5af6c /crypto/sha3/register.go
parent0a1da69fac3766b48a116580295f98df93122503 (diff)
downloaddexon-e4b138a5931b309805162610870df50165e61a8f.tar.gz
dexon-e4b138a5931b309805162610870df50165e61a8f.tar.zst
dexon-e4b138a5931b309805162610870df50165e61a8f.zip
crypto/sha3: Copy latest code from "golang.org/x/crypto/sha3"
Revision: 1f22c0103821b9390939b6776727195525381532
Diffstat (limited to 'crypto/sha3/register.go')
-rw-r--r--crypto/sha3/register.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/crypto/sha3/register.go b/crypto/sha3/register.go
new file mode 100644
index 000000000..3cf6a22e0
--- /dev/null
+++ b/crypto/sha3/register.go
@@ -0,0 +1,18 @@
+// Copyright 2014 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 go1.4
+
+package sha3
+
+import (
+ "crypto"
+)
+
+func init() {
+ crypto.RegisterHash(crypto.SHA3_224, New224)
+ crypto.RegisterHash(crypto.SHA3_256, New256)
+ crypto.RegisterHash(crypto.SHA3_384, New384)
+ crypto.RegisterHash(crypto.SHA3_512, New512)
+}