aboutsummaryrefslogtreecommitdiffstats
path: root/sm/base64.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * verify.c (gpgsm_verify): Add hash debug helpersWerner Koch2001-12-141-2/+2
| | | | | | | | | | | | | | * sign.c (gpgsm_sign): Ditto. * base64.c (base64_reader_cb): Reset the linelen when we need to skip the line and adjusted test; I somehow forgot about DeMorgan. * server.c (cmd_encrypt,cmd_decrypt,cmd_sign,cmd_verify) (cmd_import): Close the FDs on success. (close_message_fd): New. (input_notify): Setting autodetect_encoding to 0 after initializing it to 0 is pretty pointless. Easy to fix.
* Made decryption work in --server mode, allow output of plain base64,Werner Koch2001-12-131-1/+2
| | | | | | allow --armor and --base64 arguments for INPUT and OUTPUT, new global option --base64, cleaned up the help page.
* * gpgsm.c (main): New options --assume-{armor,base64,binary}.Werner Koch2001-12-121-4/+20
| | | | | * base64.c (base64_reader_cb): Fixed non-autodetection mode.
* Decryption does now workWerner Koch2001-12-061-5/+0
|
* --armor does now produce PEM format.Werner Koch2001-11-271-11/+170
|
* * base64.c: New. Changed all other functions to use this insteadWerner Koch2001-11-271-0/+401
of direct creation of ksba_reader/writer. * gpgsm.c (main): Set ctrl.auto_encoding unless --no-armor is used. This way we can feed PEM encoded stuff to --verify.