aboutsummaryrefslogtreecommitdiffstats
path: root/pow/dash/crypto.c
diff options
context:
space:
mode:
Diffstat (limited to 'pow/dash/crypto.c')
-rw-r--r--pow/dash/crypto.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/pow/dash/crypto.c b/pow/dash/crypto.c
new file mode 100644
index 000000000..9c5a62d16
--- /dev/null
+++ b/pow/dash/crypto.c
@@ -0,0 +1,5 @@
+extern char *Sha3(char *, int);
+char *sha3_cgo(char *data, int l)
+{
+ return Sha3(data, l);
+}