Mã hóa văn bản
Mã hóa văn bản là gì?
Mã hóa văn bản là quá trình chuyển đổi văn bản có thể đọc được (bản rõ) thành định dạng không thể đọc được (bản mã) để bảo vệ tính bảo mật của nó. Chỉ những người có khóa giải mã chính xác mới có thể đọc thông điệp gốc.
Supported Algorithms:
Symmetric Encryption (AES):
- AES-GCM (Recommended): Provides authenticated encryption with associated data (AEAD). Most secure for general use.
- AES-CBC: Traditional block cipher mode. Requires padding.
- AES-CTR: Counter mode. Converts block cipher to stream cipher.
Asymmetric Encryption (RSA):
- RSA-OAEP: Uses public key for encryption. Limited to ~190 characters due to key size constraints. Use for encrypting small data or symmetric keys.
Output Format:
For AES algorithms: JSON with base64-encoded components
{"iv": "base64_encoded_iv", "data": "base64_encoded_ciphertext"}
For RSA: Base64-encoded ciphertext only (no IV needed)
base64_encoded_ciphertext
This format is compatible with most encryption/decryption tools and libraries.
Cách sử dụng công cụ Mã hóa văn bản
-
Nhập văn bản bạn muốn mã hóa vào hộp nhập.
-
Chọn thuật toán mã hóa (AES hoặc RSA).
-
Nhập khóa mã hóa hoặc nhấp vào "Tạo khóa" để tạo một khóa.
-
Nhấp vào "Mã hóa" để bảo vệ văn bản của bạn.
-
Sao chép văn bản đã mã hóa và chia sẻ một cách an toàn.
-
Use the eye icon to show/hide your secret key for security.
Additional Tips:
- For AES: The secret key is auto-generated or you can provide your own (minimum 32 characters)
- For RSA: You need a public key in PEM format. Generate one using the Key Generator tool or OpenSSL
- RSA limitations: Can only encrypt short text (~190 characters). For longer texts, use AES algorithms
- Output encoding: Base64 is used for compatibility with other encryption tools and libraries
Security Notes
This tool uses the browser's native Web Crypto API for strong encryption. AES-GCM provides authenticated encryption with associated data (AEAD), making it the recommended choice for most applications. AES-CBC provides traditional block cipher encryption. Always keep your secret key secure and never share it publicly. The encrypted output includes both the initialization vector (IV) and encrypted data in JSON format.
Important Notes:
- All encryption happens locally in your browser using the Web Crypto API
- The IV (Initialization Vector) is automatically generated for each encryption and must be saved with the ciphertext
- For RSA encryption, you encrypt with a public key; decryption requires the corresponding private key
- Store your secret keys securely - if lost, encrypted data cannot be recovered
- Base64 encoding makes the output portable and compatible with most tools and programming languages
Công cụ mã hóa văn bản trực tuyến miễn phí này nhanh, an toàn và hoạt động hoàn toàn trong trình duyệt của bạn. Tất cả mã hóa được thực hiện cục bộ trong trình duyệt của bạn bằng Web Crypto API. Không có dữ liệu nào được gửi đến bất kỳ máy chủ nào.
Keywords: mã hóa văn bản trực tuyến, mã hóa aes, mã hóa văn bản, aes-gcm, aes-cbc, mã hóa văn bản an toàn, mã hóa miễn phí