DevTulz Online

פענוח טקסט

כל הפענוח מתבצע באופן מקומי בדפדפן שלך באמצעות Web Crypto API. המפתחות והנתונים שלך לא עוזבים אף פעם את המכשיר שלך.

מה זה פענוח טקסט?

פענוח טקסט הוא תהליך המרת טקסט מוצפן (טקסט סיפר) בחזרה לפורמט הקריא המקורי שלו (טקסט רגיל). זה דורש את מפתח הפענוח והאלגוריתם הנכונים.

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

איך להשתמש

  1. הדבק טקסט מוצפן.

  2. הזן את הסיסמה ששימשה להצפנה.

  3. לחץ על "פענח".

  4. ראה את הטקסט המקורי.

  5. הטקסט המפוענח מוצג אוטומטית בזמן ההקלדה.

  6. העתק את התוצאה המפוענחת לשימוש באפליקציה שלך.

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

פענח טקסט מוצפן AES-256-GCM ישירות בדפדפן. אין נתונים נשלחים לשרתים.

צריך להצפין טקסט? נסה את כלי הצפנת הטקסט שלנו →

שאלות נפוצות

האם זה בטוח לפענח נתונים רגישים כאן? כן. כל פענוח מתרחש בדפדפן שלך באמצעות JavaScript. לא נשלחים נתונים לשום שרת, כך שהמחרוזות המקודדות שלך נשארות פרטיות לחלוטין.

מה ההבדל בין Base64 ל-URL-safe Base64? Base64 סטנדרטי משתמש בתווים + ו-/, שהם תווים מיוחדים בכתובות. URL-safe Base64 מחליף אותם ב-- ו-_ כך שהמחרוזת יכולה לשמש בבטחה בכתובות ובשמות קבצים ללא קידוד אחוזים.

למה הפלט שלי שפוענח נראה כמו הבל? אם הנתונים המקוריים היו בינאריים (כגון תמונה, PDF או קובץ דחוס), הפלט שפוענח לא יהיה טקסט קריא. במקרה זה, מחרוזת Base64 מייצגת קובץ בינארי, לא מחרוזת טקסט.

האם Base64 הוא סוג של הצפנה? לא. Base64 הוא סכימת קידוד, לא הצפנה. כל אחד יכול לפענח מחרוזת Base64 ללא מפתח. לעולם לא יש להשתמש בה כדי להגן על נתונים רגישים — השתמש בהצפנה נכונה לשם כך.

Keywords: פענוח טקסט, פענוח AES-256, פענוח הודעה