Is your feature request related to a problem? Please describe.
It would be nice to have an additional decrypt-commandline tool so that we can decrypt files not only using the android app but also on other (linux-based) systems
Openssl does support chacha, maybe a script to extract the metadata from the file header (iv, others) would suffice if we can delegate the decrypting work to openssl?
(like openssl enc -d -chacha20 -in ciphertext.bin -out decrypted.txt -K $(cat key.txt) -iv $(cat nonce.txt) -nopad)
Describe the solution you'd like
- copy files from android filesystem to linux
- run decryptor (e.g. in a bash-shell loop) for each file
- enjoy the 'backup' solution in case the android app is not available?
Additional context
Is your feature request related to a problem? Please describe.
It would be nice to have an additional decrypt-commandline tool so that we can decrypt files not only using the android app but also on other (linux-based) systems
Openssl does support chacha, maybe a script to extract the metadata from the file header (iv, others) would suffice if we can delegate the decrypting work to openssl?
(like
openssl enc -d -chacha20 -in ciphertext.bin -out decrypted.txt -K $(cat key.txt) -iv $(cat nonce.txt) -nopad)Describe the solution you'd like
Additional context