1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 18:23:31 +00:00

converted cryptoservice to jslib

This commit is contained in:
Kyle Spearrin
2018-01-08 15:37:11 -05:00
parent e68f7a1141
commit bb98c7e4da
15 changed files with 16 additions and 657 deletions

View File

@@ -1,7 +1,6 @@
import ApiService from './api.service';
import CipherService from './cipher.service';
import CollectionService from './collection.service';
import CryptoService from './crypto.service';
import FolderService from './folder.service';
import SettingsService from './settings.service';
import UserService from './user.service';
@@ -17,7 +16,7 @@ export default class SyncService {
constructor(private userService: UserService, private apiService: ApiService,
private settingsService: SettingsService, private folderService: FolderService,
private cipherService: CipherService, private cryptoService: CryptoService,
private cipherService: CipherService, private cryptoService: Abstractions.CryptoService,
private collectionService: CollectionService, private storageService: Abstractions.StorageService,
private messagingService: Abstractions.MessagingService, private logoutCallback: Function) {
}