mirror of
https://github.com/status-im/c-kzg-4844.git
synced 2025-01-10 18:25:48 +00:00
Add compute_kzg_proof to rust bindings (#91)
This commit is contained in:
parent
3ec2e9cdc2
commit
60ead4ee49
@ -212,6 +212,13 @@ extern "C" {
|
|||||||
|
|
||||||
pub fn free_trusted_setup(s: *mut KZGSettings);
|
pub fn free_trusted_setup(s: *mut KZGSettings);
|
||||||
|
|
||||||
|
pub fn compute_kzg_proof(
|
||||||
|
out: *mut KZGProof,
|
||||||
|
blob: *const Blob,
|
||||||
|
z_bytes: *const Bytes32,
|
||||||
|
s: *const KZGSettings,
|
||||||
|
) -> C_KZG_RET;
|
||||||
|
|
||||||
pub fn compute_aggregate_kzg_proof(
|
pub fn compute_aggregate_kzg_proof(
|
||||||
out: *mut KZGProof,
|
out: *mut KZGProof,
|
||||||
blobs: *const Blob,
|
blobs: *const Blob,
|
||||||
|
@ -161,6 +161,27 @@ impl KZGProof {
|
|||||||
hex::encode(self.bytes)
|
hex::encode(self.bytes)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn compute_kzg_proof(
|
||||||
|
blob: &[Blob],
|
||||||
|
z_bytes: Bytes32,
|
||||||
|
kzg_settings: &KZGSettings,
|
||||||
|
) -> Result<Self, Error> {
|
||||||
|
let mut kzg_proof = MaybeUninit::<KZGProof>::uninit();
|
||||||
|
unsafe {
|
||||||
|
let res = compute_kzg_proof(
|
||||||
|
kzg_proof.as_mut_ptr(),
|
||||||
|
blob.as_ptr(),
|
||||||
|
&z_bytes,
|
||||||
|
kzg_settings,
|
||||||
|
);
|
||||||
|
if let C_KZG_RET::C_KZG_OK = res {
|
||||||
|
Ok(kzg_proof.assume_init())
|
||||||
|
} else {
|
||||||
|
Err(Error::CError(res))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub fn compute_aggregate_kzg_proof(
|
pub fn compute_aggregate_kzg_proof(
|
||||||
blobs: &[Blob],
|
blobs: &[Blob],
|
||||||
kzg_settings: &KZGSettings,
|
kzg_settings: &KZGSettings,
|
||||||
|
@ -120,7 +120,7 @@ C_KZG_RET verify_kzg_proof(bool *out,
|
|||||||
const KZGSettings *s);
|
const KZGSettings *s);
|
||||||
|
|
||||||
C_KZG_RET compute_kzg_proof(KZGProof *out,
|
C_KZG_RET compute_kzg_proof(KZGProof *out,
|
||||||
const Blob *blobs,
|
const Blob *blob,
|
||||||
const Bytes32 *z_bytes,
|
const Bytes32 *z_bytes,
|
||||||
const KZGSettings *s);
|
const KZGSettings *s);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user