AES 암호화/복호화
비밀번호 기반 키 파생과 함께 AES-256-GCM을 사용하여 텍스트를 암호화하고 복호화합니다. 모든 처리는 브라우저에서 로컬로 이루어집니다.
Use the same password for encryption and decryption
Security Details:
- • Algorithm: AES-256-GCM
- • Key Derivation: PBKDF2 with 100,000 iterations
- • Salt: 16 random bytes (stored with ciphertext)
- • IV: 12 random bytes (stored with ciphertext)
- • All encryption happens locally in your browser
AES-256-GCM - 기술 세부 정보
AES-256-GCM은 256비트 키로 인증된 암호화를 제공합니다. 100,000번 반복되는 PBKDF2가 비밀번호에서 키를 파생합니다. 각 암호화는 보안을 위해 무작위 12바이트 IV와 16바이트 솔트를 사용합니다.
명령줄 대안
# OpenSSL AES encryption openssl enc -aes-256-cbc -salt -pbkdf2 -in file.txt -out file.enc openssl enc -d -aes-256-cbc -pbkdf2 -in file.enc -out file.txt