mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-12-30 18:35:18 +00:00
35561a9e41
* v1.4.19-p1 * remove integrity check from startup
7 lines
327 B
Plaintext
7 lines
327 B
Plaintext
namespace bls48581 {
|
|
void init();
|
|
sequence<u8> commit_raw([ByRef] sequence<u8> data, u64 poly_size);
|
|
sequence<u8> prove_raw([ByRef] sequence<u8> data, u64 index, u64 poly_size);
|
|
boolean verify_raw([ByRef] sequence<u8> data, [ByRef] sequence<u8> commit, u64 index, [ByRef] sequence<u8> proof, u64 poly_size);
|
|
};
|