perf(sdk-core): reuse Argon2 session for account password rotation - #9715
Merged
Conversation
Contributor
pranavjain97
force-pushed
the
fix/wcn-2640-account-password-argon2
branch
from
September 10, 2026 18:59
7823eb7 to
0722914
Compare
pranavjain97
force-pushed
the
fix/wcn-2640-account-password-argon2
branch
from
September 10, 2026 19:02
0722914 to
e86be12
Compare
Contributor
|
|
pranavjain97
marked this pull request as ready for review
September 10, 2026 19:31
pranavjain97
requested review from
danielpeng1,
kisslove-dewangan and
zahin-mohammad
September 10, 2026 19:31
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.
Optimize account password rotation so v2 wallet-key re-encryption performs one Argon2id derivation per rotation instead of one derivation per wallet key.
This is important for users with large wallet portfolios. Without session reuse, rotating an account password across hundreds or thousands of wallets would repeatedly run Argon2id and could cause severe latency or browser resource
pressure.
WCN-2640