टेक्स्ट डिक्रिप्ट
टेक्स्ट डिक्रिप्शन क्या है?
टेक्स्ट डिक्रिप्शन एन्क्रिप्ट किए गए टेक्स्ट (सिफरटेक्स्ट) को उसके मूल पठनीय रूप (सादा टेक्स्ट) में वापस परिवर्तित करने की प्रक्रिया है। इसके लिए सही डिक्रिप्शन कुंजी और एल्गोरिदम की आवश्यकता होती है।
Supported Algorithms:
Symmetric Decryption (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 Decryption (RSA):
- RSA-OAEP: Uses private key for decryption. Requires the corresponding private key to the public key used for encryption.
Expected Input Format:
For AES algorithms: JSON with base64-encoded components
{"iv": "base64_encoded_iv", "data": "base64_encoded_ciphertext"}
Also supports legacy hex format:
{"iv": "hex_encoded_iv", "data": "hex_encoded_ciphertext"}
For RSA: Base64-encoded ciphertext only
base64_encoded_ciphertext
टेक्स्ट डिक्रिप्शन टूल कैसे उपयोग करें
-
एन्क्रिप्ट किए गए टेक्स्ट को इनपुट बॉक्स में पेस्ट करें।
-
एन्क्रिप्शन के दौरान उपयोग किए गए एल्गोरिदम का चयन करें।
-
डिक्रिप्शन कुंजी दर्ज करें।
-
मूल टेक्स्ट देखें।
-
आपके टाइप करते ही डिक्रिप्ट किया गया टेक्स्ट स्वचालित रूप से प्रदर्शित होता है।
-
अपने एप्लिकेशन में उपयोग के लिए डिक्रिप्ट किए गए परिणाम की प्रतिलिपि बनाएं।
Additional Tips:
- For AES: Use the same secret key that was used for encryption
- For RSA: You need the private key corresponding to the public key used for encryption
- Automatic format detection: The tool automatically detects base64 or hex encoding
- Error handling: If decryption fails, check that you're using the correct algorithm and key
सुरक्षा नोट्स
यह टूल सुरक्षित डिक्रिप्शन के लिए ब्राउज़र के मूल Web Crypto API का उपयोग करता है। सभी डिक्रिप्शन आपके ब्राउज़र में स्थानीय रूप से होते हैं - कोई डेटा या कुंजियां कभी भी बाहरी सर्वर पर नहीं भेजी जाती हैं। सुनिश्चित करें कि आप सही एल्गोरिदम और कुंजी का उपयोग कर रहे हैं जो एन्क्रिप्शन विधि से मेल खाते हैं। यह टूल AES एन्क्रिप्टेड डेटा के लिए base64 (मानक) और hex (पुराना) दोनों एनकोडिंग फॉर्मेट का समर्थन करता है।
Important Notes:
- All decryption happens locally in your browser using the Web Crypto API
- Your private keys and secrets never leave your browser
- For RSA decryption, you decrypt with a private key; the data was encrypted with the corresponding public key
- Keep your private keys and secret keys secure - they are the only way to decrypt your data
- The tool supports both base64 (standard) and hex (legacy) encoding formats
AES-256-GCM एन्क्रिप्टेड टेक्स्ट को ब्राउज़र में सीधे डिक्रिप्ट करें। सर्वर को कोई डेटा नहीं भेजा जाता।
Keywords: टेक्स्ट डिक्रिप्शन, AES-256 डिक्रिप्शन, संदेश डिक्रिप्शन