feat(disclosure)!: migrate to ECDH on-circuit encryption (circuits v08.0)#13
Merged
Conversation
….8.0)
The disclosure.circom circuit now encrypts selected note fields inside the
proof using ECDH over Baby Jubjub instead of revealing them as plaintext
public signals. Only the registered auditor (holding sk_A) can decrypt:
shared = sk_A · epk
plaintext_i = enc_i - Poseidon(shared.x, shared.y, i) mod BN254_P
BREAKING CHANGES:
- generateDisclosureProof() requires three new parameters:
auditorPkX: bigint, auditorPkY: bigint, r: bigint (ephemeral scalar)
- DisclosureProofOutput.revealedData removed; replaced by encryptedData:
{ epkX, epkY, encValue, encAssetId, encOwnerHash, commitment }
- Public signal count: 4 → 8
[epk_x, epk_y, enc_value, enc_asset_id, enc_owner_hash,
commitment, auditor_pk_x, auditor_pk_y]
- circomlibjs (off-circuit Poseidon owner hash) removed from proof gen
Bump @orbinum/circuits 0.7.0 → 0.8.0.
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.
The disclosure.circom circuit now encrypts selected note fields inside the proof using ECDH over Baby Jubjub instead of revealing them as plaintext public signals. Only the registered auditor (holding sk_A) can decrypt:
shared = sk_A · epk
plaintext_i = enc_i - Poseidon(shared.x, shared.y, i) mod BN254_P
BREAKING CHANGES:
Bump @orbinum/circuits 0.7.0 → 0.8.0.