DevTulz Online

Teksti dekrüptimine

Kogu dekrüpteerimine toimub lokaalselt teie brauseris Web Crypto API abil. Teie võtmed ja andmed ei lahku kunagi teie seadmest.

Mis on teksti dekrüpteerimine?

Teksti dekrüpteerimine teisendab krüpteeritud teksti tagasi algseks loetavaks tekstiks. Vajate sama parooli, mida kasutati krüpteerimiseks. See tööriist kasutab AES-256-GCM-i dekrüpteerimiseks, kogu töötlemine toimub teie brauseris.

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

Kuidas kasutada

  1. Kleepige krüpteeritud tekst.

  2. Sisestage krüpteerimiseks kasutatud parool.

  3. Klõpsake "Dekrüpteeri".

  4. Vaadake algset teksti.

  5. Dekrüpteeritud tekst kuvatakse automaatselt kirjutamise ajal.

  6. Kopeerige dekrüpteeritud tulemus rakenduses kasutamiseks.

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

Turvamärkused

See tööriist kasutab turvaliseks dekrüpteerimiseks brauseri natiivset Web Crypto API-d. Kogu dekrüpteerimine toimub lokaalselt — andmeid ega võtmeid ei saadeta välistele serveritele. Tööriist toetab base64 ja hex kodeeringuformaate AES-andmete jaoks.

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

Dekrüpteerige AES-256-GCM krüpteeritud tekst otse brauseris. Andmeid ei saadeta serveritesse.

Kas peate krüpteerima teksti? Proovige meie teksti krüpteerimise tööriista →

Sageli Esitatud Küsimused

Kas on turvaline tundlikke andmeid siin dekodeerida? Jah. Kogu dekodeerimine toimub teie brauseris JavaScripti abil. Andmeid ühele serverile ei saadeta, nii et teie kodeeritud stringid jäävad täiesti privaatseks.

Mis on erinevus Base64 ja URL-safe Base64 vahel? Standard Base64 kasutab + ja / märke, mis on URL-ides spetsiaalsed märgid. URL-safe Base64 asendab need - ja _ märkidega, nii et stringi saab URL-ides ja failinimedes ohutult kasutada ilma protsendi-kodeerimiseta.

Miks näeb minu dekodeeritud väljund segane välja? Kui algandmed olid binaarsed (näiteks pilt, PDF või pakitud fail), siis dekodeeritud väljund ei ole loetav tekst. Sel juhul esindab Base64 string binaaarset faili, mitte tekstistringi.

Kas Base64 on krüptimise vorm? Ei. Base64 on kodeerimiskava, mitte krüptimine. Igaüks saab Base64 stringi lahti kodeerida ilma võtmeta. Seda ei tohiks kunagi kasutada tundlike andmete kaitseks — kasutage selle jaoks korralikku krüptimist.

Keywords: teksti dekrüpteerimine, AES-256 dekrüpteerimine, sõnumi dekrüpteerimine