RevealTheme logo

AES-256 암호화

AES-256-GCM으로 텍스트를 암호화하고 복호화합니다. 키는 PBKDF2-SHA256을 통해 사용자의 비밀 문구에서 파생됩니다.

이 도구 사용 방법

  1. 1

    Choose 'Encrypt' or 'Decrypt' from the mode dropdown.

  2. 2

    Type a passphrase into the password field — you'll need the exact same one to decrypt later.

  3. 3

    Paste plain text to encrypt, or paste the base64 ciphertext to decrypt, into the text area.

  4. 4

    Click 'Run' and copy the result from the output box below.

AES-256 암호화란 무엇인가요?

AES-256-GCM은 대칭 암호화의 표준으로, TLS, Signal, 그리고 대부분의 디스크 암호화에서 사용됩니다. 이 도구는 사용자의 브라우저에서 Web Crypto API를 사용합니다: 암호화할 때마다 솔트 + IV를 무작위로 생성하고, 비밀 문구에 대해 PBKDF2를 100,000회 반복합니다. 결과물은 안전한 전송을 위해 base64로 인코딩됩니다.

일반적인 사용 사례

  • Encrypting a note, recovery phrase, or API key before pasting it into a chat, ticket, or shared document.

  • Sending a short secret to a teammate who has agreed on a passphrase through a separate channel.

  • Storing sensitive snippets in a password-protected form inside otherwise plain-text notes or a wiki.

  • Demonstrating how AES-GCM, PBKDF2 key derivation, and random IVs work for a class or code review.

  • Quickly checking that a base64 blob produced by this tool decrypts back to the expected text.

  • Adding a layer of protection to clipboard or backup text on a shared or untrusted machine.

자주 묻는 질문

제 비밀 문구는 어디에 저장되나요?
어디에도 저장되지 않습니다. 비밀 문구는 메모리에서 키를 파생하는 데 사용되며, 전송되거나 저장되는 일이 절대 없습니다.
비밀 문구를 잃어버리면 어떻게 되나요?
데이터를 복구할 수 없습니다. AES-256은 합리적인 시간 내에 무차별 대입으로 복호화할 수 없습니다.

관련 도구