텍스트 복호화
텍스트 복호화란 무엇입니까?
텍스트 복호화는 암호화 알고리즘과 올바른 복호화 키를 사용하여 암호화된 데이터를 원래의 평문으로 변환합니다. 대칭 암호화 (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
텍스트 복호화 도구 사용 방법
-
암호화된 데이터를 입력 필드에 붙여넣습니다 (AES의 경우 iv 및 data가 포함된 JSON 형식, RSA의 경우 base64).
-
암호화에 사용된 알고리즘을 선택합니다.
-
AES의 경우: 암호화에 사용된 비밀 키를 입력합니다.
-
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를 사용합니다. 모든 복호화는 브라우저에서 로컬로 발생합니다 - 데이터나 키가 외부 서버로 전송되지 않습니다. 사용된 암호화 방법과 일치하는 올바른 알고리즘과 키를 사용하고 있는지 확인하세요. 이 도구는 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 복호화, 클라이언트 측 복호화