mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-23 12:07:17 +00:00
231e468e19
git-subtree-dir: erigon-lib git-subtree-mainline:3c8cbda809
git-subtree-split:93d9c9d9fe
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;
|
|
}
|
|
|