mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-11 10:10:25 +01:00
Return null in derivePublicKey if privateKey is null (#10882)
This commit is contained in:
parent
86fab07a37
commit
192fd885d5
@ -945,6 +945,10 @@ export class CryptoService implements CryptoServiceAbstraction {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private async derivePublicKey(privateKey: UserPrivateKey) {
|
private async derivePublicKey(privateKey: UserPrivateKey) {
|
||||||
|
if (privateKey == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
return (await this.cryptoFunctionService.rsaExtractPublicKey(privateKey)) as UserPublicKey;
|
return (await this.cryptoFunctionService.rsaExtractPublicKey(privateKey)) as UserPublicKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user