Skip to content

Commit

Permalink
Execute build/refresh.sh.
Browse files Browse the repository at this point in the history
  • Loading branch information
dot-asm committed Jun 13, 2024
1 parent 4d9214b commit 331d839
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
20 changes: 19 additions & 1 deletion bindings/rust/src/bindings.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* automatically generated by rust-bindgen 0.65.1 */
/* automatically generated by rust-bindgen 0.69.4 */

#[repr(u32)]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
Expand Down Expand Up @@ -1386,6 +1386,24 @@ extern "C" {
extern "C" {
pub fn blst_fp12_sizeof() -> usize;
}
extern "C" {
pub fn blst_p1_affine_serialize_eip2537(out: *mut byte, in_: *const blst_p1_affine);
}
extern "C" {
pub fn blst_p1_serialize_eip2537(out: *mut byte, in_: *const blst_p1);
}
extern "C" {
pub fn blst_p1_deserialize_eip2537(out: *mut blst_p1_affine, in_: *const byte) -> BLST_ERROR;
}
extern "C" {
pub fn blst_p2_affine_serialize_eip2537(out: *mut byte, in_: *const blst_p2_affine);
}
extern "C" {
pub fn blst_p2_serialize_eip2537(out: *mut byte, in_: *const blst_p2);
}
extern "C" {
pub fn blst_p2_deserialize_eip2537(out: *mut blst_p2_affine, in_: *const byte) -> BLST_ERROR;
}
extern "C" {
pub fn blst_sha256(out: *mut byte, msg: *const byte, msg_len: usize);
}
Expand Down
6 changes: 6 additions & 0 deletions build/win64/blst.def
Original file line number Diff line number Diff line change
Expand Up @@ -217,5 +217,11 @@ EXPORTS
blst_p2_sizeof
blst_p2_affine_sizeof
blst_fp12_sizeof
blst_p1_affine_serialize_eip2537
blst_p1_serialize_eip2537
blst_p1_deserialize_eip2537
blst_p2_affine_serialize_eip2537
blst_p2_serialize_eip2537
blst_p2_deserialize_eip2537
blst_sha256

0 comments on commit 331d839

Please sign in to comment.