فك تشفير النص
ما هو فك تشفير النص؟
فك تشفير النص هو عملية تحويل النص المشفر (النص المشفر) مرة أخرى إلى شكله الأصلي القابل للقراءة (النص العادي). يتطلب ذلك مفتاح فك التشفير والخوارزمية الصحيحين.
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
كيفية استخدام أداة فك تشفير النص
-
الصق النص المشفر في مربع الإدخال.
-
اختر الخوارزمية المستخدمة أثناء التشفير.
-
أدخل مفتاح فك التشفير.
-
لـ RSA: الصق مفتاحك الخاص بتنسيق PEM.
-
انقر على زر "فك التشفير" لرؤية النص الأصلي.
-
استخدم أيقونة العين لإظهار/إخفاء مفتاحك السري للأمان.
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 الأصلية للمتصفح لفك التشفير الآمن. جميع عمليات فك التشفير تحدث محلياً في متصفحك - لا يتم إرسال أي بيانات أو مفاتيح إلى خوادم خارجية. تأكد من استخدام الخوارزمية والمفتاح الصحيحين اللذين يطابقان طريقة التشفير المستخدمة. الأداة تدعم كلاً من تنسيقات ترميز base64 (قياسي) و hex (قديم) لبيانات AES المشفرة.
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
هذه الأداة المجانية عبر الإنترنت text decryption أداة سريعة وآمنة وتعمل بالكامل في متصفحك. All decryption is performed locally using the Web Crypto API - لا يتم إرسال أي بيانات إلى أي خادم. مثالية للمطورين, security professionals, and anyone needing to decrypt text data encrypted with AES or RSA algorithms.
Keywords: text decryption عبر الإنترنت, AES decryption, decrypt text, AES-GCM, AES-CBC, AES-CTR, RSA-OAEP, secure text decryption, free decryption أداة, Web Crypto API decryption, client-side decryption