mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-27 16:17:22 +00:00
5 lines
93 B
C
5 lines
93 B
C
extern char *Sha3(char *, int);
|
|
char *sha3_cgo(char *data, int l)
|
|
{
|
|
return Sha3(data, l);
|
|
}
|