Tool overview
什么是加密 / 解密?
加密 / 解密是一款帮助您使用口令派生密钥进行 AES-GCM 文本加解密的开发者工具。
为什么使用加密 / 解密?
在需要使用口令派生密钥进行 AES-GCM 文本加解密时提升可读性与效率,且不会将数据上传到服务器。
核心功能
即时语法高亮、错误捕获、客户端隐私保护与一键复制。使用口令派生密钥进行 AES-GCM 文本加解密
使用方法
按照以下步骤使用上方工具并获得准确结果。
- 输入强口令 — 用于派生加密密钥。
- 粘贴明文并选择加密,或粘贴 payload JSON 进行解密。
- 复制加密包 (salt, iv, ciphertext) 用于存储或传输。
- 使用相同口令解密 — 错误口令会安全失败。
加密 payload 格式
客户端 AES-GCM 信封中的字段。
| 令牌类型 | 有效标准格式 | 畸形输入 |
|---|---|---|
| Payload envelope | { "salt":"…","iv":"…","ciphertext":"…" } | { "ciphertext":"only" }Missing salt or iv prevents deterministic key re-derivation. |
| Passphrase strength | Long unique passphrase or generated secret | password123Weak passphrases are vulnerable to offline guessing regardless of cipher. |
| Encoding | Base64 fields in JSON wrapper | Raw binary pasted in JSONCopy the full JSON envelope—not individual fields out of context. |
安全特性
Encryption uses PBKDF2 + AES-GCM in the browser. This is not a substitute for managed KMS/HSM in regulated environments. Passphrases exist only in memory until you navigate away.
常见问题
关于常见调试问题和数据隐私的可展开解答。
官方文档与参考
本工具的权威规范与平台文档。