Skip to content

Commit 331d839

Browse files
committed
Execute build/refresh.sh.
1 parent 4d9214b commit 331d839

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

bindings/rust/src/bindings.rs

+19-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* automatically generated by rust-bindgen 0.65.1 */
1+
/* automatically generated by rust-bindgen 0.69.4 */
22

33
#[repr(u32)]
44
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
@@ -1386,6 +1386,24 @@ extern "C" {
13861386
extern "C" {
13871387
pub fn blst_fp12_sizeof() -> usize;
13881388
}
1389+
extern "C" {
1390+
pub fn blst_p1_affine_serialize_eip2537(out: *mut byte, in_: *const blst_p1_affine);
1391+
}
1392+
extern "C" {
1393+
pub fn blst_p1_serialize_eip2537(out: *mut byte, in_: *const blst_p1);
1394+
}
1395+
extern "C" {
1396+
pub fn blst_p1_deserialize_eip2537(out: *mut blst_p1_affine, in_: *const byte) -> BLST_ERROR;
1397+
}
1398+
extern "C" {
1399+
pub fn blst_p2_affine_serialize_eip2537(out: *mut byte, in_: *const blst_p2_affine);
1400+
}
1401+
extern "C" {
1402+
pub fn blst_p2_serialize_eip2537(out: *mut byte, in_: *const blst_p2);
1403+
}
1404+
extern "C" {
1405+
pub fn blst_p2_deserialize_eip2537(out: *mut blst_p2_affine, in_: *const byte) -> BLST_ERROR;
1406+
}
13891407
extern "C" {
13901408
pub fn blst_sha256(out: *mut byte, msg: *const byte, msg_len: usize);
13911409
}

build/win64/blst.def

+6
Original file line numberDiff line numberDiff line change
@@ -217,5 +217,11 @@ EXPORTS
217217
blst_p2_sizeof
218218
blst_p2_affine_sizeof
219219
blst_fp12_sizeof
220+
blst_p1_affine_serialize_eip2537
221+
blst_p1_serialize_eip2537
222+
blst_p1_deserialize_eip2537
223+
blst_p2_affine_serialize_eip2537
224+
blst_p2_serialize_eip2537
225+
blst_p2_deserialize_eip2537
220226
blst_sha256
221227

0 commit comments

Comments
 (0)