1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-13 15:03:26 +00:00

incorrectly serialized symmetric crypto key in session storage (#18150)

This commit is contained in:
Maciej Zieniuk
2025-12-31 08:31:26 +01:00
committed by GitHub
parent 11b5342df7
commit 2b5f474bf0

View File

@@ -578,7 +578,7 @@ export default class MainBackground {
"ephemeral",
"bitwarden-ephemeral",
);
await sessionStorage.save("session-key", derivedKey);
await sessionStorage.save("session-key", derivedKey.toJSON());
return derivedKey;
});