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
tools.aes-encrypt.toolInfo.title - तकनीकी विवरण
tools.aes-encrypt.toolInfo.details
कमांड-लाइन विकल्प
# 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