mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-01 00:53:47 +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);
|
|
}
|