Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added a copyright year for files changed this year. | Werner Koch | 2002-04-29 | 1 | -1/+1 |
| | |||||
* | fixed comment style | Werner Koch | 2002-04-29 | 1 | -1/+1 |
| | |||||
* | After generating a new key, show the key information (name, keyid, | David Shaw | 2002-04-23 | 1 | -39/+76 |
| | | | | | | | | | | | | fingerprint, etc.) Do not print uncheckable signatures (missing key..) in --check-sigs. Print statistics (N missing keys, etc.) after --check-sigs. When signing a key with an expiration date on it, the "Do you want your signature to expire at the same time?" question should default to YES | ||||
* | Fix auto-key-retrieve to actually work as a keyserver-option (noted by | David Shaw | 2002-04-04 | 1 | -5/+6 |
| | | | | | | | | Roger Sondermann). Do not reorder the primary attribute packet - the first user ID must be a genuine one. | ||||
* | Fix ownertrust display with --with-colons. | David Shaw | 2002-03-31 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | | | | Properly initialize the user ID refcount for user and photo IDs. Tweak a few prompts to change "y/n" to "y/N", which is how most other prompts are written. Warn the user if they are about to revoke an expired sig (not a problem, but they should know). Control-d escapes the keyserver search prompt. If a subkey is considered revoked solely because the parent key is revoked, print the revocation reason from the parent key. Allow revocation/expiration to apply to a uid/key with no entry in the trustdb. | ||||
* | This is the first half of revocation key / designated revoker | David Shaw | 2002-02-28 | 1 | -1/+7 |
| | | | | | | | | | | | | | | | | | | | | | support. That is, it handles all the data to mark a key as revoked if it has been revoked by a designated revoker. The second half (coming later) will contain the code to make someones key your designated revoker and to issue revocations for someone else. Note that this is written so that a revoked revoker can still issue revocations: i.e. If A revokes B, but A is revoked, B is still revoked. I'm not completely convinced this is the proper behavior, but it matches how PGP does it. It does at least have the advantage of much simpler code - my first version of this had lots of loop maintaining code so you could chain revokers many levels deep and if D was revoked, C was not, which meant that B was, and so on. It was sort of scary, actually. This also changes importing to allow bringing in more revocation keys, and exporting to not export revocation keys marked "sensitive". The --edit menu information will show if a revocation key is present. | ||||
* | For --sig-policy-url and --cert-policy-url, clarify what is a sig and what | David Shaw | 2002-02-10 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | is a cert. A sig has sigclass 0x00, 0x01, 0x02, or 0x40, and everything else is a cert. Add a "nrlsign" for nonrevocable and local key signatures. Add a --no-force-mdc to undo --force-mdc. Add a knob to force --disable-mdc/--no-disable-mdc. Off by default, of course, but is used in --pgp2 and --pgp6 modes. Allow specifying multiple users in the "Enter the user ID" loop. Enter a blank line to stop. Show each key+id as it is added. It is not illegal (though possibly silly) to have multiple policy URLs in a given signature, so print all that are present. More efficient implementation of URL-ifying code for --search on an HKP keyserver. | ||||
* | Allow policy URLs with %-expandos in them. This allows policy URLs like | David Shaw | 2002-02-05 | 1 | -7/+16 |
| | | | | | | | | | "http://notary.jabberwocky.com/keysign/%K" to create a per-signature policy URL. Use the new generic %-handler for the photo ID stuff as well. Display policy URLs and notations during signature generation if --show-policy-url/--show-notation is set. | ||||
* | Add an outofband indicator to the keyserver protocol. | David Shaw | 2001-12-28 | 1 | -2/+2 |
| | | | | | | Use signature flags for exportability check rather than re-parsing the subpacket. | ||||
* | * keyserver.c (keyserver_spawn): Removed some variables | Werner Koch | 2001-12-22 | 1 | -1/+1 |
| | | | | | | | | | | | | declaration due to shadowing warnings. * build-packet.c (build_attribute_subpkt): s/index/idx/ to avoid compiler warnig due to index(3). * getkey.c (get_ctx_handle): Use KEYDB_HANDLE as return value. * keylist.c (list_one): Made resname const. * keyedit.c (keyedit_menu): Allow "addphoto" only when --openpgp is not used. * options.skel: Changed one example photo viewer to qiv. | ||||
* | Photo ID support (actually generic "attribute packet" support, but there | David Shaw | 2001-12-21 | 1 | -3/+8 |
| | | | | | is only one attribute packet defined thus far, and it's a picture) | ||||
* | * g10.c. options.h : New option --show-keyring | Werner Koch | 2001-12-21 | 1 | -0/+17 |
| | | | | | | * getkey.c (get_ctx_handle): New. * keylist.c (list_one): Implement option here. By David Champion. | ||||
* | Fixed some types for portability. Noted by Stefan Bellon. | David Shaw | 2001-12-12 | 1 | -2/+3 |
| | |||||
* | Sig expiration code | David Shaw | 2001-12-07 | 1 | -2/+4 |
| | | | | | | | Offer to expire a key signature when the key the user is signing expires Expired sigs cause an error return If --expert is set, prompt for sig duration | ||||
* | "sigclass" patch - adds key signature class levels, notation and policy-url | David Shaw | 2001-12-06 | 1 | -2/+68 |
| | | | | | displays in key listings, and shows flags for signature features. | ||||
* | * export.c (do_export_stream): Put all given names into a search | Werner Koch | 2001-11-09 | 1 | -1/+1 |
| | | | | | | description and change the loop so that all matching names are returned. | ||||
* | calculate time of next trustdb check | Werner Koch | 2001-09-28 | 1 | -0/+9 |
| | |||||
* | Revamped the trustDB | Werner Koch | 2001-09-24 | 1 | -3/+3 |
| | |||||
* | Code cleanups | Werner Koch | 2001-09-20 | 1 | -36/+84 |
| | |||||
* | more bug fixesand some warning cleanups | Werner Koch | 2001-09-09 | 1 | -3/+3 |
| | |||||
* | Revamped the keyring code | Werner Koch | 2001-09-06 | 1 | -17/+26 |
| | |||||
* | Changed lsign behaviour, allow future subkeys, don't list revoked keys | Werner Koch | 2001-08-01 | 1 | -0/+6 |
| | |||||
* | migration to autoconf 2.52 and bugfixes | Werner Koch | 2001-07-26 | 1 | -1/+0 |
| | |||||
* | just released another snapshot | Werner Koch | 2001-05-28 | 1 | -2/+3 |
| | |||||
* | Fixes for W32 | Werner Koch | 2001-04-19 | 1 | -9/+9 |
| | |||||
* | a second snapshot thsi day (1.0.4f) | Werner Koch | 2001-03-27 | 1 | -4/+0 |
| | |||||
* | Fixed a bugs; e.g. in --list-secret-keys | Werner Koch | 2001-03-27 | 1 | -0/+4 |
| | |||||
* | list key-capabilities | Werner Koch | 2001-03-15 | 1 | -12/+81 |
| | |||||
* | add option --fixed-list-mode | Werner Koch | 2001-03-14 | 1 | -18/+42 |
| | |||||
* | Key listing cleanup | Werner Koch | 2001-03-13 | 1 | -185/+266 |
| | |||||
* | Changed and added copyright notices | Werner Koch | 2001-03-08 | 1 | -1/+1 |
| | |||||
* | Add self-signature verification caching | Werner Koch | 2001-03-05 | 1 | -1/+1 |
| | |||||
* | Fixed the new key selection code | Werner Koch | 2001-03-03 | 1 | -4/+3 |
| | |||||
* | Release snapshot 1.0.4d | Werner Koch | 2001-01-11 | 1 | -6/+10 |
| | |||||
* | See ChangeLog: Mon Jul 24 10:30:17 CEST 2000 Werner Koch | Werner Koch | 2000-07-24 | 1 | -0/+7 |
| | |||||
* | See ChangeLog: Wed Jul 19 11:26:43 CEST 2000 Werner Koch | Werner Koch | 2000-07-19 | 1 | -2/+77 |
| | |||||
* | See ChangeLog: Fri May 12 14:01:20 CEST 2000 Werner Koch | Werner Koch | 2000-05-12 | 1 | -1/+1 |
| | |||||
* | See ChangeLog: Thu Mar 16 16:20:23 CET 2000 Werner Koch | Werner Koch | 2000-03-16 | 1 | -8/+14 |
| | |||||
* | See ChangeLog: Thu Feb 10 11:39:41 CET 2000 Werner Koch | Werner Koch | 2000-02-10 | 1 | -3/+5 |
| | |||||
* | See ChangeLog: Mon Nov 29 21:52:11 CET 1999 Werner Koch | Werner Koch | 1999-11-29 | 1 | -13/+23 |
| | |||||
* | See ChangeLog: Mon Nov 22 11:14:53 CET 1999 Werner Koch | Werner Koch | 1999-11-22 | 1 | -1/+2 |
| | |||||
* | See ChangeLog: Fri Nov 12 20:33:19 CET 1999 Werner Koch | Werner Koch | 1999-11-12 | 1 | -20/+15 |
| | |||||
* | See ChangeLog: Tue Aug 31 17:20:44 CEST 1999 Werner Koch | Werner Koch | 1999-08-31 | 1 | -4/+12 |
| | |||||
* | See ChangeLog: Tue Jun 8 13:36:25 CEST 1999 Werner Koch | Werner Koch | 1999-06-08 | 1 | -0/+18 |
| | |||||
* | See ChangeLog: Wed Apr 28 13:03:03 CEST 1999 Werner Koch | Werner Koch | 1999-04-28 | 1 | -1/+4 |
| | |||||
* | See ChangeLog: Sun Apr 18 20:48:15 CEST 1999 Werner Koch | Werner Koch | 1999-04-18 | 1 | -1/+4 |
| | |||||
* | See ChangeLog: Wed Mar 10 11:26:18 CET 1999 Werner Koch | Werner Koch | 1999-03-10 | 1 | -3/+7 |
| | |||||
* | See ChangeLog: Mon Mar 8 20:47:17 CET 1999 Werner Koch | Werner Koch | 1999-03-08 | 1 | -3/+10 |
| | |||||
* | See ChangeLog: Sun Feb 28 19:11:00 CET 1999 Werner Koch | Werner Koch | 1999-02-28 | 1 | -1/+1 |
| | |||||
* | See ChangeLog: Wed Feb 24 11:07:27 CET 1999 Werner Koch | Werner Koch | 1999-02-24 | 1 | -1/+1 |
| |