AES-256 암호화
AES-256-GCM으로 텍스트를 암호화하고 복호화합니다. 키는 PBKDF2-SHA256을 통해 사용자의 비밀 문구에서 파생됩니다.
이 도구 사용 방법
- 1
Choose 'Encrypt' or 'Decrypt' from the mode dropdown.
- 2
Type a passphrase into the password field — you'll need the exact same one to decrypt later.
- 3
Paste plain text to encrypt, or paste the base64 ciphertext to decrypt, into the text area.
- 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.
자주 묻는 질문
제 비밀 문구는 어디에 저장되나요?▼
비밀 문구를 잃어버리면 어떻게 되나요?▼
관련 도구
비밀번호 해시 생성기(PBKDF2)
PBKDF2-SHA256을 사용하여 사용자의 브라우저에서 안전한 비밀번호 해시를 생성합니다. MD5나 단순 SHA보다 강력하며, 작업 계수를 조정할 수 있습니다.
HMAC 생성기
SHA-1, SHA-256, SHA-384 또는 SHA-512를 사용하여 HMAC 서명을 생성합니다.
2FA용 QR 코드 생성기
Google Authenticator, Authy, 1Password 등 2FA 앱을 위한 TOTP QR 코드를 생성합니다.
비밀번호 강도 검사기
문자 집합 크기와 흔한 비밀번호 목록을 기준으로 비밀번호의 엔트로피를 검사합니다. 완전히 오프라인으로 작동합니다.
카이사르 암호 인코더 및 디코더
카이사르 암호로 텍스트를 인코딩하거나 디코딩합니다. 고정된 자리수만큼 글자를 치환하는 방식입니다.
ROT13 인코더 및 디코더
ROT13으로 텍스트를 인코딩하거나 디코딩합니다. 13글자 이동 방식의 카이사르 암호로, 자기 자신이 역함수가 되는 특성이 있습니다.