aboutsummaryrefslogtreecommitdiffstats
path: root/pow/dash/crypto.go
diff options
context:
space:
mode:
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)
-}