-
Notifications
You must be signed in to change notification settings - Fork 116
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
Should circuit_size, etc.. be witnesses in Recursive VerificationKey? #983
Closed
lucasxia01 opened this issue
May 16, 2024
· 0 comments
· Fixed by AztecProtocol/aztec-packages#12459
Closed
Should circuit_size, etc.. be witnesses in Recursive VerificationKey? #983
lucasxia01 opened this issue
May 16, 2024
· 0 comments
· Fixed by AztecProtocol/aztec-packages#12459
Comments
This was referenced Mar 4, 2025
AztecBot
pushed a commit
that referenced
this issue
Mar 6, 2025
Closes #983. Makes the vk metadata witnesses instead of native types. I think only circuit_size actually needs to be a witness, but its fine to make them all witnesses. Still a lot of security concerns around this area since there's missing constraints with these witnesses.
lucasxia01
added a commit
to AztecProtocol/aztec-packages
that referenced
this issue
Mar 12, 2025
Closes AztecProtocol/barretenberg#1089. Removes the circuitSize, numPublicInputs, and pubInputsOffset metadata from the proof. The result is that the public inputs are at the beginning of the proof. Followup work includes: - Medium: making these metadata actual witnesses in the recursive VK (AztecProtocol/barretenberg#983). - Small: fixing verify_honk_proof acir test inputs (AztecProtocol/barretenberg#1279). - Small: cleaning up or removing the proof surgeon. - Medium: Further structuring the proof/public inputs output as Cody suggests in AztecProtocol/barretenberg#1089 to split out the accumulators in the pub inputs. - Small Adding pubInputsOffset to the Honk Solidity VK (AztecProtocol/barretenberg#1281). --------- Co-authored-by: saleel <saleel@saleel.xyz>
AztecBot
pushed a commit
that referenced
this issue
Mar 13, 2025
Closes #1089. Removes the circuitSize, numPublicInputs, and pubInputsOffset metadata from the proof. The result is that the public inputs are at the beginning of the proof. Followup work includes: - Medium: making these metadata actual witnesses in the recursive VK (#983). - Small: fixing verify_honk_proof acir test inputs (#1279). - Small: cleaning up or removing the proof surgeon. - Medium: Further structuring the proof/public inputs output as Cody suggests in #1089 to split out the accumulators in the pub inputs. - Small Adding pubInputsOffset to the Honk Solidity VK (#1281). --------- Co-authored-by: saleel <saleel@saleel.xyz>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, they are just native values because the proof already contains identical information that will be turned into witnesses. But, this deserves more thinking.
The text was updated successfully, but these errors were encountered: