mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2025-01-02 11:55:17 +00:00
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);
|
||
|
};
|