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, 14 insertions, 0 deletions
diff --git a/pow/dash/crypto.go b/pow/dash/crypto.go
new file mode 100644
index 000000000..0644a54ae
--- /dev/null
+++ b/pow/dash/crypto.go
@@ -0,0 +1,14 @@
+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)
+}