I want to change some encryption options while using GnuPG to encrypt a file symmetrically.
1) However, for choosing the cipher algorithm, GnuPG has two commands and I don't know which one to use.
Between these two, which one should I use?
--s2k-cipher-algo AES256
--cipher-algo AES256
2) Also for choosing the digest algorithm, there are two options,
Between these two, which one should I use?
--s2k-digest-algo SHA512
--digest-algo SHA512
3) Is there anything wrong with this encryption?
gpg -symmetric --cipher-algo AES256 --digest-algo SHA512 --s2k-mode 3 --s2k-count 65011712 PlainText
Edit: This is not a duplicate question, I can't find any post here on Stackexchange or any where in the net that specify the difference between --s2k-cipher-algo and --cipher-algo.