본문으로 건너뛰기
OpsKit

AES Encrypt / Decrypt

Encrypt text with authenticated AES-GCM using a 128, 192 or 256-bit key. A random salt and IV are embedded in the output so it can be decrypted later.

A forgotten password cannot be recovered. This is not a password manager.

전부 브라우저 안에서 처리됩니다. 이 페이지는 정적 파일입니다. 입력한 내용은 탭 안에만 머물고 서버로 전송되지 않으며 창을 닫으면 사라집니다. 실제 토큰이나 설정을 붙여넣어도 안전합니다.

이럴 때 씁니다

  • Protecting a small note before storing or sending it.
  • Testing AES-GCM integrations.
  • Creating temporary encrypted text without uploading plaintext.

실제 예제

Portable payload

입력
plain text + password
결과
opskit:aes-gcm:1:…

The output contains the random salt, IV and authenticated ciphertext, but not the password.

자주 틀리는 부분

Reusing a weak password

Encryption cannot compensate for a short or reused password. Use a long unique passphrase.

자주 묻는 질문

Which algorithm should I choose?

AES-256-GCM is the recommended default. All options use authenticated GCM and a key derived by PBKDF2-SHA-256 with 210,000 iterations.

관련 도구