aesEncrypt()
function aesEncrypt(text): Promise<{
cipherText: string;
iv: string;
key: string;
}>;
Defined in: crypto/aesEncrypt.ts:28
AES 加密
Parameters
| Parameter | Type | Description |
|---|---|---|
text | string | 明文 |
Returns
Promise<{
cipherText: string;
iv: string;
key: string;
}>
加密结果