One can sign a file using PGP, using clearsign
option by performing following command in CMD
gpg --clearsign filename
What kind of algorithm does GnuPG uses for clearsign option such that even after performing signature, the output signature is in readable fromat?
I read a manual that said how clearsign option works but I am not able to understand it. It is available here.
According to manual, armor is applied to signature which makes signature unreadable. But the question was how clearsign make signature readable.
But, how can one control output of a signature, composed of a hash algorithm and an encryption function, as cleartext?
By using hash and encryption function, how can output be guaranteed into range of ASCII characters that are readable?