1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-18 18:33:50 +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 jaasen-livefront
parent 7fa89cd889
commit a3e5b94ba9

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;
});