Add Bulletproof rewind functionality#340
Open
hansieodendaal wants to merge 1 commit intodalek-cryptography:developfrom
Open
Add Bulletproof rewind functionality#340hansieodendaal wants to merge 1 commit intodalek-cryptography:developfrom
hansieodendaal wants to merge 1 commit intodalek-cryptography:developfrom
Conversation
This is closely modelled on Grin's solution, but using two private keys:
- Interfaces:
- create a rewindable ZK proof with up to 23 bytes additional embedded proof
data
- extract the value and 23 bytes proof data only
- extract the value, blinding factor and 23 bytes proof data
- Required:
- two rewind nonces, based on two public rewind keys and the value
commitment
- two blinding nonces, based on the two private rewind keys and the value
commitment
- Use:
- the two rewind nonces are used to extract the value and 23 bytes embedded
proof data
- the two rewind nonces and two blinding nonces are used to extract the
value, blinding factor and 23 bytes embedded proof data
72d89cf to
2337fb9
Compare
|
Hi bulletproofs team! @hdevalence @cathieyun @isislovecruft @oleganza Could we have any feedback on this proposal/PR please? We are maintaining a fork over at tari-project/bulletproofs, but would love to have this merged upstream if it's something you find could be useful. Any comment or critique is greatly welcomed. Thank you |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is closely modelled on Grin's solution, but using two private keys:
data
commitment
commitment
proof data
value, blinding factor and 23 bytes embedded proof data
Please see related issue #335
Thanks!