Metin Şifreleme
Metin Şifreleme Nedir?
Metin şifreleme, gizliliğini korumak için okunabilir metni (düz metin) okunamaz bir formata (şifreli metin) dönüştürme işlemidir. Yalnızca doğru şifre çözme anahtarına sahip olanlar orijinal mesajı okuyabilir.
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.
Metin Şifreleme Aracı Nasıl Kullanılır
-
Şifrelemek istediğiniz metni giriş kutusuna girin.
-
Şifreleme algoritmasını seçin (AES veya RSA).
-
Bir şifreleme anahtarı girin veya bir tane oluşturmak için "Anahtar Oluştur"a tıklayın.
-
RSA için: Genel anahtarınızı PEM formatında yapıştırın.
-
Şifrelenmiş veriyi oluşturmak için "Şifrele" düğmesine tıklayın.
-
Güvenlik için gizli anahtarınızı göstermek/gizlemek için göz simgesini kullanın.
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
Güvenlik Notları
Bu araç Web Crypto API kullanır ve tamamen tarayıcınızda çalışır. Verileriniz asla herhangi bir sunucuya gönderilmez. Üretim kullanımı için her zaman güçlü rastgele anahtarlar kullanın.
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
Bu ücretsiz çevrimiçi metin şifreleme aracı hızlı, güvenli ve tamamen tarayıcınızda çalışır. Tüm şifreleme, Web Crypto API kullanılarak tarayıcınızda yerel olarak gerçekleştirilir. Veriler hiçbir sunucuya gönderilmez.
Keywords: çevrimiçi metin şifreleme, aes şifreleme, metni şifrele, aes-gcm, aes-cbc, güvenli metin şifreleme, ücretsiz şifreleme