Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2001-12-20 | * verify.c (gpgsm_verify): Implemented non-detached signature | Werner Koch | 5 | -17/+59 | |
verification. Add OUT_FP arg, initialize a writer and changed all callers. * server.c (cmd_verify): Pass an out_fp if one has been set. | |||||
2001-12-20 | * base64.c (base64_reader_cb): Try to detect an S/MIME body part. | Werner Koch | 8 | -83/+101 | |
* certdump.c (print_sexp): Renamed to gpgsm_dump_serial, made global. (print_time): Renamed to gpgsm_dump_time, made global. (gpgsm_dump_serial): Take a real S-Expression as argument and print the first item. * keylist.c (list_cert_colon): Ditto. * keydb.c (keydb_search_issuer_sn): Ditto. * decrypt.c (print_integer_sexp): Removed and made callers use gpgsm_dump_serial. * verify.c (print_time): Removed, made callers use gpgsm_dump_time. | |||||
2001-12-19 | assuan/ | Marcus Brinkmann | 2 | -1/+5 | |
2001-12-14 Marcus Brinkmann <[email protected]> * assuan-buffer.c (_assuan_read_line): New variable ATTICLEN, use it to save the length of the attic line. Rediddle the code a bit to make it more clear what happens. agent/ 2001-12-19 Marcus Brinkmann <[email protected]> * query.c (start_pinentry): Add new argument to assuan_pipe_connect. sm/ 2001-12-19 Marcus Brinkmann <[email protected]> * call-agent.c (start_agent): Add new argument to assuan_pipe_connect. | |||||
2001-12-18 | * Makefile.am (AM_CPPFLAGS): Add flags for libksbaNEWPG-0-0-0 | Werner Koch | 1 | -2/+2 | |
* Makefile.am (AM_CPPFLAGS): Include flags for gcrypt and ksba * Makefile.am: Use LIBGCRYPT macros | |||||
2001-12-18 | Changes to be used with the new libksba interface. | Werner Koch | 12 | -172/+175 | |
libgcrypt-1.1.5 is required (cvs or tarball) | |||||
2001-12-15 | * gpgsm.c (main): Renamed the default key database to "keyring.kbx". | Werner Koch | 2 | -1/+3 | |
2001-12-15 | * decrypt.c (gpgsm_decrypt): Write STATUS_DECRYPTION_*. | Werner Koch | 5 | -6/+50 | |
* sign.c (gpgsm_sign): Write a STATUS_SIG_CREATED. | |||||
2001-12-14 | * keylist.c (list_cert_colon): Kludge to show an email address | Werner Koch | 3 | -1/+55 | |
encoded in the subject's DN. | |||||
2001-12-14 | * verify.c (gpgsm_verify): Add hash debug helpers | Werner Koch | 5 | -3/+73 | |
* 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. | |||||
2001-12-14 | * gpgsm.c (main): New option --debug-wait n, so that it is | Werner Koch | 3 | -17/+23 | |
possible to attach gdb when used in server mode. | |||||
2001-12-14 | * util.h (digitp, hexdigitp): New ctype like macros. | Werner Koch | 1 | -1/+1 | |
(atoi_1,atoi_2,atoi_4,xtoi_1,xtoi_2): New. * command.c: Removed the conversion macros as they are now in ../common/util.h. | |||||
2001-12-14 | * sign.c (get_default_signer): Use keydb_classify_name here. | Werner Koch | 3 | -2/+13 | |
2001-12-14 | Fixed test key | Werner Koch | 1 | -1/+1 | |
2001-12-14 | Fixed test key | Werner Koch | 2 | -2/+2 | |
2001-12-14 | * keylist.c (list_cert_colon): Print alternative names of subject | Werner Koch | 2 | -2/+6 | |
and a few other values. | |||||
2001-12-13 | assuan/ | Marcus Brinkmann | 2 | -4/+8 | |
2001-12-14 Marcus Brinkmann <[email protected]> * assuan-defs.h (LINELENGTH): Define as ASSUAN_LINELENGTH. assuan.h: Define ASSUAN_LINELENGTH. agent/ 2001-12-14 Marcus Brinkmann <[email protected]> * query.c (LINELENGTH): Removed. (agent_askpin): Use ASSUAN_LINELENGTH, not LINELENGTH. sm/ 2001-12-14 Marcus Brinkmann <[email protected]> * call-agent.c (LINELENGTH): Removed. (gpgsm_agent_pksign): Use ASSUAN_LINELENGTH, not LINELENGTH. (gpgsm_agent_pkdecrypt): Likewise. | |||||
2001-12-13 | * keylist.c (list_cert_colon): Print alternative names of subject | Werner Koch | 6 | -29/+65 | |
and a few other values. | |||||
2001-12-13 | Now that the DN encoding works more correct, we have to update the | Werner Koch | 1 | -1/+1 | |
default key. | |||||
2001-12-13 | Made decryption work in --server mode, allow output of plain base64, | Werner Koch | 4 | -35/+76 | |
allow --armor and --base64 arguments for INPUT and OUTPUT, new global option --base64, cleaned up the help page. | |||||
2001-12-12 | * gpgsm.c (main): New options --assume-{armor,base64,binary}. | Werner Koch | 3 | -5/+65 | |
* base64.c (base64_reader_cb): Fixed non-autodetection mode. | |||||
2001-12-11 | Implemented encryption in server mode. | Werner Koch | 11 | -59/+485 | |
Allow to specify a recipient on the commandline There is still a default hardwired recipient if none has been set. | |||||
2001-12-10 | --encrypt does now work for a hardwired key. | Werner Koch | 3 | -106/+424 | |
2001-12-06 | Decryption does now work | Werner Koch | 4 | -31/+292 | |
2001-12-05 | Started with decryption stuff | Werner Koch | 9 | -367/+372 | |
2001-11-27 | --armor does now produce PEM format. | Werner Koch | 5 | -12/+188 | |
2001-11-27 | * base64.c: New. Changed all other functions to use this instead | Werner Koch | 10 | -331/+782 | |
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. | |||||
2001-11-26 | * gpgsm.c: New option --agent-program | Werner Koch | 4 | -5/+21 | |
* call-agent.c (start_agent): Allow to override the default path to the agent. | |||||
2001-11-26 | * keydb.c (keydb_add_resource): Create keybox | Werner Koch | 7 | -149/+247 | |
* keylist.c (gpgsm_list_keys): Fixed non-server keylisting. * server.c (rc_to_assuan_status): New. Use it for all commands. | |||||
2001-11-25 | The agent does now work and read the secret keys from the directory | Werner Koch | 5 | -9/+590 | |
~/.gnupg-test/private-keys-v1.d/<keygrip-as-20-byte-hex-number>. I will post a sample key to gpa-dev. | |||||
2001-11-24 | Introduced the keygrip | Werner Koch | 3 | -0/+63 | |
2001-11-24 | Added new directory common to enable sharing of some code and error | Werner Koch | 13 | -348/+64 | |
numbers between gpg, gpgsm and gpg-agent. Move some files and code to there. | |||||
2001-11-24 | Signing does now work. There is no secret key management yet, so you | Werner Koch | 5 | -19/+147 | |
should set GPGSM_FAKE_KEY=1 before you try to verify a signature created by gpgsm --sign or the SIGN server command. | |||||
2001-11-23 | Just a Backup. We can now write out a basic signature which in turn | Werner Koch | 5 | -1/+372 | |
exhibits a bug in --verify. | |||||
2001-11-20 | Map Libksba's OIDs to Libgcrypt digest algo numbers. | Werner Koch | 4 | -14/+26 | |
The latest Libgcrypt CVS version is needed. | |||||
2001-11-19 | Added new file to please Jan | Werner Koch | 1 | -0/+184 | |
2001-11-19 | Added basic code for keylisting. | Werner Koch | 5 | -7/+22 | |
New Assuan command LISTKEYS. | |||||
2001-11-19 | Write status output, make verify work in server mode. | Werner Koch | 6 | -13/+422 | |
2001-11-19 | gpgsm --verify does now work like gpg including the | Werner Koch | 6 | -25/+305 | |
--enable-special-filenames option. | |||||
2001-11-16 | Base code for gpgsm --verify does work | Werner Koch | 11 | -78/+533 | |
2001-11-13 | We have reached a state where we are able to import certs and | Werner Koch | 13 | -426/+1149 | |
check the certification path. | |||||
2001-11-10 | We now need a way to store keys | Werner Koch | 2 | -0/+780 | |
2001-11-10 | we are now able to check self-signed certificates | Werner Koch | 3 | -43/+160 | |
2001-11-07 | Implemented server main loop and started with import command. | Werner Koch | 8 | -4/+537 | |
2001-11-06 | gpgsm does now build and a dummy server can be started. | Werner Koch | 5 | -12/+1225 | |
2001-10-31 | Created configuration files | Werner Koch | 3 | -0/+42 | |