aboutsummaryrefslogtreecommitdiffstats
path: root/pow/dash/crypto.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-04 00:20:34 +0800
committerobscuren <geffobscura@gmail.com>2015-03-04 00:20:34 +0800
commit22b132e28f74cabef38a55874da8e3db93786144 (patch)
tree2ae0e114e8aaf7dfba259c5e64979575bec4004b /pow/dash/crypto.go
parentee0a1bec6c3ce942e51265535961ac6a745d33eb (diff)
parentde9f79133faa1ff5dcd16fb4fd13d06b7799ded9 (diff)
downloaddexon-22b132e28f74cabef38a55874da8e3db93786144.tar
dexon-22b132e28f74cabef38a55874da8e3db93786144.tar.gz
dexon-22b132e28f74cabef38a55874da8e3db93786144.tar.bz2
dexon-22b132e28f74cabef38a55874da8e3db93786144.tar.lz
dexon-22b132e28f74cabef38a55874da8e3db93786144.tar.xz
dexon-22b132e28f74cabef38a55874da8e3db93786144.tar.zst
dexon-22b132e28f74cabef38a55874da8e3db93786144.zip
Merge branch 'publictests' of https://github.com/xcthulhu/go-ethereum into xcthulhu-publictests
Diffstat (limited to 'pow/dash/crypto.go')
-rw-r--r--pow/dash/crypto.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/pow/dash/crypto.go b/pow/dash/crypto.go
deleted file mode 100644
index 0644a54ae..000000000
--- a/pow/dash/crypto.go
+++ /dev/null
@@ -1,14 +0,0 @@
-package dash
-
-/*
-char *sha3_cgo(char *, int); // Forward declaration
-*/
-import "C"
-import (
- "github.com/ethereum/go-ethereum/crypto"
-)
-
-//export Sha3
-func Sha3(data []byte, l int) []byte {
- return crypto.Sha3(data)
-}