1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

pass crypto function service more

This commit is contained in:
Kyle Spearrin
2018-04-21 23:56:18 -04:00
parent 2501c1a623
commit 0c147cc35b
2 changed files with 3 additions and 3 deletions

2
jslib

Submodule jslib updated: fc1114a6bd...5e7115f78d

View File

@@ -99,11 +99,11 @@ const syncService = new SyncService(userService, apiService, settingsService,
folderService, cipherService, cryptoService, collectionService,
storageService, messagingService, (expired: boolean) => messagingService.send('logout', { expired: expired }));
const passwordGenerationService = new PasswordGenerationService(cryptoService, storageService);
const totpService = new TotpService(storageService);
const totpService = new TotpService(storageService, cryptoFunctionService);
const containerService = new ContainerService(cryptoService, platformUtilsService);
const authService = new AuthService(cryptoService, apiService,
userService, tokenService, appIdService, i18nService, platformUtilsService, messagingService);
const auditService = new AuditService(cryptoService);
const auditService = new AuditService(cryptoFunctionService);
const analytics = new Analytics(window, () => isDev(), platformUtilsService, storageService, appIdService);
containerService.attachToWindow(window);