mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-24 12:06:15 +01:00
catch any errors when generating fingerprint
This commit is contained in:
parent
a7555f56e7
commit
f0407e4327
@ -254,9 +254,11 @@ export class PeopleComponent implements OnInit {
|
|||||||
const orgKey = await this.cryptoService.getOrgKey(this.organizationId);
|
const orgKey = await this.cryptoService.getOrgKey(this.organizationId);
|
||||||
const publicKeyResponse = await this.apiService.getUserPublicKey(user.userId);
|
const publicKeyResponse = await this.apiService.getUserPublicKey(user.userId);
|
||||||
const publicKey = Utils.fromB64ToArray(publicKeyResponse.publicKey);
|
const publicKey = Utils.fromB64ToArray(publicKeyResponse.publicKey);
|
||||||
// tslint:disable-next-line
|
try {
|
||||||
console.log('User\'s fingerprint: ' +
|
// tslint:disable-next-line
|
||||||
(await this.cryptoService.getFingerprint(user.userId, publicKey.buffer)).join('-'));
|
console.log('User\'s fingerprint: ' +
|
||||||
|
(await this.cryptoService.getFingerprint(user.userId, publicKey.buffer)).join('-'));
|
||||||
|
} catch { }
|
||||||
const key = await this.cryptoService.rsaEncrypt(orgKey.key, publicKey.buffer);
|
const key = await this.cryptoService.rsaEncrypt(orgKey.key, publicKey.buffer);
|
||||||
const request = new OrganizationUserConfirmRequest();
|
const request = new OrganizationUserConfirmRequest();
|
||||||
request.key = key.encryptedString;
|
request.key = key.encryptedString;
|
||||||
|
Loading…
Reference in New Issue
Block a user