How to use Openssl to encryption and decryption for files by using XChaCha20Poly1305 in Terminal ?
openssl enc -chacha20 -base64 -salt -p -iter 700 -md sha512 -in input.file -out output.file
openssl enc -chacha20 -d -base64 -salt -p -iter 700 -md sha512 -in input.file -out output.file
How to implement XChaCha20Poly1305 in this?