mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 09:43:23 +00:00
support for prelogin kdf info
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
import { TwoFactorProviderType } from '../enums/twoFactorProviderType';
|
||||
|
||||
import { AuthResult } from '../models/domain/authResult';
|
||||
import { SymmetricCryptoKey } from '../models/domain/symmetricCryptoKey';
|
||||
|
||||
export abstract class AuthService {
|
||||
email: string;
|
||||
@@ -16,4 +17,5 @@ export abstract class AuthService {
|
||||
logOut: (callback: Function) => void;
|
||||
getSupportedTwoFactorProviders: (win: Window) => any[];
|
||||
getDefaultTwoFactorProvider: (u2fSupported: boolean) => TwoFactorProviderType;
|
||||
makePreloginKey: (masterPassword: string, email: string) => Promise<SymmetricCryptoKey>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user