forked from zcash/halo2
-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update serialization format according to upstream #176
Labels
Comments
CPerezz
added a commit
to privacy-scaling-explorations/halo2curves
that referenced
this issue
May 8, 2023
With the current serialization primitives we have here, pasta curves did not have any way to be serialized as we did not implement `SerdeObject` for it. This PR adds this support which resolves #23. The code needs to have `unsafe` chunks as we need to transmute memory in order to be able to access the private fields of the pasta-curves crate structs. This should be revisited and re-thought once privacy-scaling-explorations/halo2#176 is addressed.
CPerezz
added a commit
to privacy-scaling-explorations/halo2curves
that referenced
this issue
Aug 4, 2023
With the current serialization primitives we have here, pasta curves did not have any way to be serialized as we did not implement `SerdeObject` for it. This PR adds this support which resolves #23. The code needs to have `unsafe` chunks as we need to transmute memory in order to be able to access the private fields of the pasta-curves crate structs. This should be revisited and re-thought once privacy-scaling-explorations/halo2#176 is addressed.
This was referenced Sep 20, 2023
CPerezz
added a commit
to privacy-scaling-explorations/halo2curves
that referenced
this issue
Jan 5, 2024
With the current serialization primitives we have here, pasta curves did not have any way to be serialized as we did not implement `SerdeObject` for it. This PR adds this support which resolves #23. The code needs to have `unsafe` chunks as we need to transmute memory in order to be able to access the private fields of the pasta-curves crate structs. This should be revisited and re-thought once privacy-scaling-explorations/halo2#176 is addressed.
Closed
@CPerezz @ed255 @davidnevadoc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Originally posted by @daira in #103 (comment)
I suggest to look at zcash#661 and adapt our serialization primitives to it. To keep everything as compatible as possible with upstream.
The text was updated successfully, but these errors were encountered: