AES-256 加密
使用 AES-256-GCM 加密和解密文字。金鑰透過 PBKDF2-SHA256 從你的通行碼衍生而來。
如何使用本工具
- 1
Choose 'Encrypt' or 'Decrypt' from the mode dropdown.
- 2
Type a passphrase into the password field — you'll need the exact same one to decrypt later.
- 3
Paste plain text to encrypt, or paste the base64 ciphertext to decrypt, into the text area.
- 4
Click 'Run' and copy the result from the output box below.
什麼是 AES-256 加密?
AES-256-GCM 是對稱加密的黃金標準:TLS、Signal 以及大多數磁碟加密都在使用它。本工具在你的瀏覽器中使用 Web Crypto API:每次加密都會隨機產生鹽值和 IV,並對你的通行碼執行 10 萬次 PBKDF2 迭代。輸出以 base64 編碼,以便安全傳輸。
常見使用場景
Encrypting a note, recovery phrase, or API key before pasting it into a chat, ticket, or shared document.
Sending a short secret to a teammate who has agreed on a passphrase through a separate channel.
Storing sensitive snippets in a password-protected form inside otherwise plain-text notes or a wiki.
Demonstrating how AES-GCM, PBKDF2 key derivation, and random IVs work for a class or code review.
Quickly checking that a base64 blob produced by this tool decrypts back to the expected text.
Adding a layer of protection to clipboard or backup text on a shared or untrusted machine.
常見問題
我的通行碼儲存在哪裡?▼
如果我遺失了通行碼會怎樣?▼
相關工具
密碼雜湊產生器(PBKDF2)
使用 PBKDF2-SHA256 在你的瀏覽器中產生安全的密碼雜湊。比 MD5 或簡單 SHA 更強,工作因子可調。
HMAC產生器
使用SHA-1、SHA-256、SHA-384或SHA-512產生HMAC簽章。
2FA QR Code 產生器
為 Google Authenticator、Authy、1Password 及其他 2FA 應用程式產生 TOTP QR Code。
密碼強度檢測器
根據字元集大小和常見密碼清單檢測你密碼的熵值。完全離線執行。
凱撒密碼編碼與解碼工具
使用凱撒密碼對文字進行編碼或解碼:按固定位移替換字母。
ROT13編碼與解碼工具
使用ROT13對文字進行編碼或解碼:一種位移13位、且自身互逆的凱撒密碼。