AESGcmEncryptResult
InterfaceAES-GCM 加密结果。
Signature
interface AESGcmEncryptResult {
ciphertext: string
iv: string
}Members
| Name | Type | Description |
|---|---|---|
| ciphertext | string | Base64 编码的密文(末尾已包含 GCM 认证标签) |
| iv | string | Base64 编码的初始向量 |
Source
packages/encryptor/src/AESHelper.ts:12