rsaDecrypt()
function rsaDecrypt(cipherText, privateKeyPem): Promise<string>;
Defined in: crypto/rsaDecrypt.ts:26
RSA 解密
Parameters
| Parameter | Type | Description |
|---|---|---|
cipherText | string | 密文 |
privateKeyPem | string | 私钥 |
Returns
Promise<string>
function rsaDecrypt(cipherText, privateKeyPem): Promise<string>;
Defined in: crypto/rsaDecrypt.ts:26
RSA 解密
| Parameter | Type | Description |
|---|---|---|
cipherText | string | 密文 |
privateKeyPem | string | 私钥 |
Promise<string>