You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using blst_scalar_from_uint32, the scalar gets additional bytes added to it that aren't from the integer.
This looks like it is because the function expects an array of 8 integers, but in the Rust bindings (which I'm using), I'm only passing in a single u32, so the C code is reading extra bytes past the integer and filling the scalar with them.