mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-26 13:40:05 +00:00
c4805e0262
* issue/issue-281-create_binding_to_pedersen_hash * Add //nolint * Add more nolints * move nolint * Remove nolit * Add gcc install * Upd .ci * Remove staticcheck * Add envs * try to exclude pedersen_hash from test * try to fix mac os build * Add include for mac os * Add include for mac os * Fix runner_os * remove test for macos * Change restrictions * restrict tests to ubuntu * Try test windows * Add build constraint
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;
|
|
}
|
|
|