mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-20 09:21:11 +00:00
231e468e19
git-subtree-dir: erigon-lib git-subtree-mainline: 3c8cbda8098cc073a668b9e9b0aafe6c361f17da git-subtree-split: 93d9c9d9fe4bd8a49f7a98a6bce0f0da7094c7d3
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;
|
|
}
|
|
|