1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

Use encrypt service in node env secure storage (#9099)

* Use `EncryptService` In `NodeEnvSecureStorage` To Replace Deprecated Methods

* Update Abstract EncryptService Method To Reflect Implementation
This commit is contained in:
Justin Baur
2024-05-13 06:51:53 -04:00
committed by GitHub
parent a141d06c00
commit c0216e191a
3 changed files with 6 additions and 9 deletions

View File

@@ -272,7 +272,7 @@ export class Main {
this.secureStorageService = new NodeEnvSecureStorageService(
this.storageService,
this.logService,
() => this.cryptoService,
this.encryptService,
);
this.memoryStorageService = new MemoryStorageService();