Skip to main content
DevTools24

Crittografia/Decrittografia AES

Crittografa testo con 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

tools.aes-encrypt.toolInfo.title - Dettagli tecnici

tools.aes-encrypt.toolInfo.details

Alternativa da riga di comando

# 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

Riferimento

Visualizza specifica ufficiale