DevTulz Online

テキスト復号化

すべての復号化はWeb Crypto APIを使用してブラウザ内でローカルに実行されます。鍵とデータがデバイスから離れることはありません。

テキスト復号化とは?

テキスト復号化は、暗号化アルゴリズムと正しい復号化鍵を使用して、暗号化されたデータを元の平文に変換します。対称暗号化(AES)の場合は、暗号化に使用したのと 同じ秘密鍵を使用します。非対称暗号化(RSA)の場合は、暗号化に使用した公開鍵に対応する秘密鍵を使用します。

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. 暗号化されたデータを入力フィールドに貼り付けます(AESの場合はivとdataを含むJSON形式、RSAの場合はbase64)。

  2. 暗号化に使用したアルゴリズムを選択します。

  3. AESの場合: 暗号化に使用した秘密鍵を入力します。

  4. RSAの場合: PEM形式の秘密鍵を貼り付けます。

  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を使用します。すべての復号化はブラウザ内でローカルに行われます - データや鍵が外部サーバーに送信されることはありません。使用した暗号化方法に一致する正しいアルゴリズムと鍵を使用していることを確認してください。ツールは、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

こ の無料のオンラインテキスト復号化ツールは高速で安全であり、完全にブラウザ内で動作します。すべての復号化はWeb Crypto APIを使用してローカルで実行されます - データはサーバーに送信されません。開発者、セキュリティ専門家、AESまたはRSAアルゴリズムで暗号化されたテキストデータを復号化する必要があるすべての人に最適です。

テキストを暗号化する必要がありますか?当社のテキスト暗号化ツールをお試しください →

Keywords: テキスト復号化 オンライン, AES復号化, テキストを復号化, AES-GCM, AES-CBC, AES-CTR, RSA-OAEP, 安全なテキスト復号化, 無料復号化ツール, Web Crypto API復号化, クライアント側復号化