Bridge session key encryption cache to decryption cache (#495)#487
Merged
Merged
Conversation
…firm When the submitter encrypts session key randomness for each recipient, also store (encryptedRandomness → plainRandomness) in the decryption cache. When the same participant later acts as a confirmer for its own transaction, getSessionKeyRandomness finds a cache hit and skips the expensive ECIES private-key decryption. Today, the submitter's participant encrypts session keys (ECIES) for N recipients, sends to sequencer, receives the same encrypted views back as a confirmer, and decrypts them — redundantly performing ECIES decrypt on data it just encrypted. With ~20 SVs on the Global Synchronizer, this wastes ~8ms of ECIES work per self-confirmed transaction. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This was referenced Apr 16, 2026
Collaborator
|
The decryption cache pre-population makes sense, I'll merge it. |
soren-da
approved these changes
Apr 21, 2026
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Closes #495
Summary
When a submitter encrypts session key randomness for N recipients, also store
(encryptedRandomness → plainRandomness)in the decryption cache. When the same participant later confirms its own transaction, the ECIES decrypt is a cache hit — no asymmetric crypto needed.Impact
Decrypt-side savings (confirming participant, self-confirmed transactions only):
Only applies to self-confirmed transactions — when the submitting participant is also a confirmer (which is the common case: the submitter is always an informee of its own transaction).
Does NOT help other confirmers (SVs confirming someone else's transaction). Their decrypt cost is unchanged.
7 lines of code. Zero risk — just populating a cache that already exists.
Relation to other PRs
Test plan
SimplestPingIntegrationTestpasses🤖 Generated with Claude Code