EDGE Toolkit Technical Guideline

Encryption and Decryption Compliance with OpenSSL

Encryption

edgetk -crypt enc -kdf pbkdf2 -key passphrase -iter 4096 -iv 00000000000000000000000000000000 < plaintext.txt > encrypted.bin

File encrypted successfully!

Base64 Encoded Ciphertext

jdP+jlk2hKG9CZH7awng1rOgpLXYbjkahEpfFbhDzrIWAEVQc8bP0tIHcIY=

Decryption

openssl enc -d -aes-256-ctr -pbkdf2 -k passphrase -nosalt -iter 4096 -iv 00000000000000000000000000000000 < encrypted.bin > decrypted.txt

File decrypted successfully!

Portability, Compatibility, Interoperability