1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-06-26 10:36:19 +02: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

@ -1 +1 @@
Subproject commit fc1114a6bd66b62b7821958fca2a0c9260c08ddc
Subproject commit 5e7115f78d8a87b241a43fdcd6d53b67ccf0b605

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