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) {
|
||||
if (privateKey == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return (await this.cryptoFunctionService.rsaExtractPublicKey(privateKey)) as UserPublicKey;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue