This commit is contained in:
obscuren
2015-01-12 10:19:27 +01:00
parent 7e6b72cb5c
commit 35fe4313d5
5 changed files with 50 additions and 2 deletions

5
pow/dash/crypto.c Normal file
View File

@ -0,0 +1,5 @@
extern char *Sha3(char *, int);
char *sha3_cgo(char *data, int l)
{
return Sha3(data, l);
}