mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-28 14:47:16 +00:00
9 lines
154 B
C++
9 lines
154 B
C++
|
#include "hash.h"
|
||
|
#include "ffi_pedersen_hash.h"
|
||
|
|
||
|
int CHash(const char* in1, const char* in2, char* out) {
|
||
|
int r = GoHash(in1, in2, out);
|
||
|
return r;
|
||
|
}
|
||
|
|