mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 13:53:34 +00:00
specify generator algorithm during TDE (#9519)
This commit is contained in:
@@ -246,7 +246,10 @@ export class LoginViaAuthRequestComponent
|
|||||||
|
|
||||||
const deviceIdentifier = await this.appIdService.getAppId();
|
const deviceIdentifier = await this.appIdService.getAppId();
|
||||||
const publicKey = Utils.fromBufferToB64(this.authRequestKeyPair.publicKey);
|
const publicKey = Utils.fromBufferToB64(this.authRequestKeyPair.publicKey);
|
||||||
const accessCode = await this.passwordGenerationService.generatePassword({ length: 25 });
|
const accessCode = await this.passwordGenerationService.generatePassword({
|
||||||
|
type: "password",
|
||||||
|
length: 25,
|
||||||
|
});
|
||||||
|
|
||||||
this.fingerprintPhrase = (
|
this.fingerprintPhrase = (
|
||||||
await this.cryptoService.getFingerprint(this.email, this.authRequestKeyPair.publicKey)
|
await this.cryptoService.getFingerprint(this.email, this.authRequestKeyPair.publicKey)
|
||||||
|
|||||||
Reference in New Issue
Block a user