aboutsummaryrefslogtreecommitdiffstats
path: root/g10 (unfollow)
Commit message (Collapse)AuthorFilesLines
2006-11-10Fixed that nasty 64 bit but.Werner Koch2-10/+17
2006-11-05Collected fixes.Werner Koch6-37/+110
2006-10-242006-10-24 Marcus Brinkmann <[email protected]>Marcus Brinkmann2-1/+5
* Makefile.am (AM_CFLAGS): Add $(LIBASSUAN_CFLAGS).
2006-10-23.Werner Koch3-2/+21
2006-10-20Allow to select X.509 certificates using the keygrip.Werner Koch2-1/+9
2006-10-19FixesWerner Koch3-2/+9
2006-10-18Fixed v3 keyids.Werner Koch2-3/+8
2006-10-18Fixed a bug with very long keys.Werner Koch3-217/+264
2006-10-17Pth tweaks and improved estream.cWerner Koch2-2/+6
2006-10-13* parse-packet.c (parse_symkeyenc): Show the unpacked as well as theDavid Shaw6-5/+51
packed s2k iteration count. * main.h, options.h, gpg.c (encode_s2k_iterations, main), passphrase.c (hash_passphrase): Add --s2k-count option to specify the number of s2k hash iterations.
2006-10-10Various changesWerner Koch4-17/+17
2006-10-06* keyserver.c (keyserver_spawn): Write the 16-digit keyid ratherDavid Shaw2-2/+11
than whatever key selector the user used on the command line.
2006-10-05bug fixesWerner Koch3-13/+23
2006-10-04Re-enabled --passphrase-fdWerner Koch3-16/+60
2006-10-04Fixed agent access for gpg.Werner Koch7-905/+476
2006-10-04Preparing a new releaseWerner Koch2-56/+18
2006-10-02Fix for bug 537Werner Koch29-334/+382
2006-09-21Various updatesWerner Koch8-14/+20
2006-09-20Cleanups.Werner Koch2-119/+10
2006-09-14Take advantage of newer gpg-error features.Werner Koch16-63/+68
2006-09-13Various fixes and new features.Werner Koch2-0/+5
Enhanced gpg-connect-agent.
2006-09-07Added missing fileWerner Koch1-0/+243
2006-09-062006-09-06 Marcus Brinkmann <[email protected]>Marcus Brinkmann2-3/+9
* Makefile.am (gpg2_LDADD, gpgv2_LDADD): Replace -lassuan and -lgpg-error with $(LIBASSUAN_LIBS) and $(GPG_ERROR_LIBS). (AM_CFLAGS): Add $(LIBASSUAN_CFLAGS) and $(GPG_ERROR_CFLAGS).
2006-09-06The big Assuan error code removal.Werner Koch3-30/+32
2006-09-06Minor changes and typo fixes.Werner Koch3-1/+13
2006-08-29See ChangeLogsWerner Koch2-6/+7
2006-08-21Migrated more stuff to doc/Werner Koch8-107/+79
Migrated the gpg regression tests. Some changes tp the gpg code to fix bugs and for the use in testing. make distcheck works now with gpg enabled.
2006-08-16With --enable-gpg the keyservers are now build and a first test using gpg2Werner Koch12-28/+138
shows no prblems. Needs more testing of course.
2006-08-01Preparing 1.4.5Werner Koch2-9/+18
2006-07-31Fix bug 655Werner Koch2-1/+5
2006-07-31Fixed bug 479. Not a real good fix but a reliable one which limits possibleWerner Koch4-1/+14
breakage of other partys of the code.
2006-07-28Preparing a release candidategnupg-1.4.5rc1Werner Koch2-4/+4
2006-07-27Preparing a new releasegnupg-1.9.22Werner Koch7-65/+115
2006-07-26Fixed memory allocation bug and typos.Werner Koch5-9/+35
2006-07-08* configure.ac: Fix resolver autoconf code so it works (fails)David Shaw1-1/+1
properly with uClibc.
2006-06-30A couple of fixes. gpg2's key generation does now work.Werner Koch9-34/+52
2006-06-28i18n fixWerner Koch2-2/+10
2006-06-28* keydb.h, pkclist.c (select_algo_from_prefs, algo_available): Pass aDavid Shaw4-14/+27
union for preference hints rather than doing void * games. * sign.c (sign_file): Use it here.
2006-06-28* sign.c (sign_file): When signing with multiple DSA keys, one being DSA1David Shaw2-49/+49
and one being DSA2 and encrypting at the same time, if the recipient preferences give a hash that can work with the DSA2 key, then allow the DSA1 key to be promoted rather than giving up and using hash_for().
2006-06-28* pkclist.c (algo_available): Automatically enable DSA2 mode when handlingDavid Shaw2-5/+10
a key that clearly isn't DSA1 (i.e. q!=160).
2006-06-28Fixed uploading of keays.Werner Koch2-1/+7
2006-06-27Ported patches from 1.4.x Werner Koch10-59/+323
2006-06-27do no use reopen_std under W32.Werner Koch2-2/+6
2006-06-25About to do a new releaseWerner Koch2-3/+3
2006-06-22* options.h, gpg.c (main), keygen.c (keygen_upd_std_prefs,David Shaw4-2/+51
keygen_add_std_prefs, proc_parameter_file): Add --default-keyserver-url to specify a keyserver URL at key generation time, and "Keyserver:" keyword for doing the same through a batch file.
2006-06-22* sign.c (do_sign): Accept a truncated hash even for DSA1 keys (be liberalDavid Shaw2-1/+13
in what you accept, etc).
2006-06-20Updated FSF's address.Werner Koch8-7/+23
2006-06-12* import.c (import_one): Add a flag (from_sk) so we don't check prefsDavid Shaw2-6/+13
on an autoconverted public key. The check should only happen on the sk size. Noted by Dirk Traulsen.
2006-06-10* keygen.c (gen_card_key): Add optional argument to return a pointerDavid Shaw2-8/+20
(not a copy) of the stub secret key for the secret key we just generated on the card. (generate_card_subkeypair): Use it here so that the signing key on the card can use the card to generate the 0x19 backsig on the primary key. Noted by Janko Heilgeist and Jonas Oberg.
2006-06-09* parse-packet.c (parse_user_id): Cap the user ID size at 2048 bytes. David Shaw2-0/+22
This prevents a memory allocation attack with a very large user ID. A very large packet length could even cause the allocation (a u32) to wrap around to a small number. Noted by Evgeny Legerov on full-disclosure.