aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal H. Walfield <[email protected]>2015-11-17 20:21:03 +0000
committerNeal H. Walfield <[email protected]>2015-11-17 20:23:16 +0000
commit0b86c7463c8c057496b38e06c00f0ae4288dad49 (patch)
tree13fdee3ea7842ebeef76189277e1d612b7b53d2e
parentdirmngr: Fix specifying keyservers by IP address. (diff)
downloadgnupg-0b86c7463c8c057496b38e06c00f0ae4288dad49.tar.gz
gnupg-0b86c7463c8c057496b38e06c00f0ae4288dad49.zip
gpg: Allow selecting subkeys using a keyid.
* g10/keyedit.c (menu_select_key): Take an additional argument, p. Update callers. If P is a hex string, then assume that P is a key id or fingerprint and select subkeys with matching key ids or fingerprints. * doc/gpg.texi: Update documentation for the key subcommand. -- Signed-off-by: Neal H. Walfield <[email protected]> GnuPG-bug-id: 1423 Debian-bug-id: 610336
-rw-r--r--doc/gpg.texi2
-rw-r--r--g10/keyedit.c65
2 files changed, 62 insertions, 5 deletions
diff --git a/doc/gpg.texi b/doc/gpg.texi
index dcef49506..d6ae5796d 100644
--- a/doc/gpg.texi
+++ b/doc/gpg.texi
@@ -613,7 +613,7 @@ line.
@item key @code{n}
@opindex keyedit:key
- Toggle selection of subkey with index @code{n}.
+ Toggle selection of subkey with index @code{n} or key ID @code{n}.
Use @code{*} to select all and @code{0} to deselect all.
@item sign
diff --git a/g10/keyedit.c b/g10/keyedit.c
index 16b0ceccd..5fc92b2c7 100644
--- a/g10/keyedit.c
+++ b/g10/keyedit.c
@@ -77,7 +77,7 @@ static int menu_set_keyserver_url (const char *url, KBNODE pub_keyblock);
static int menu_set_notation (const char *string, KBNODE pub_keyblock);
static int menu_select_uid (KBNODE keyblock, int idx);
static int menu_select_uid_namehash (KBNODE keyblock, const char *namehash);
-static int menu_select_key (KBNODE keyblock, int idx);
+static int menu_select_key (KBNODE keyblock, int idx, char *p);
static int count_uids (KBNODE keyblock);
static int count_uids_with_flag (KBNODE keyblock, unsigned flag);
static int count_keys_with_flag (KBNODE keyblock, unsigned flag);
@@ -1719,7 +1719,7 @@ keyedit_menu (ctrl_t ctrl, const char *username, strlist_t locusr,
if (*arg_string == '*'
&& (!arg_string[1] || spacep (arg_string + 1)))
arg_number = -1; /* Select all. */
- if (menu_select_key (keyblock, arg_number))
+ if (menu_select_key (keyblock, arg_number, p))
redisplay = 1;
}
break;
@@ -4888,10 +4888,67 @@ menu_select_uid_namehash (KBNODE keyblock, const char *namehash)
* Returns: True if the selection changed.
*/
static int
-menu_select_key (KBNODE keyblock, int idx)
+menu_select_key (KBNODE keyblock, int idx, char *p)
{
KBNODE node;
- int i;
+ int i, j;
+ int is_hex_digits = strlen (p) >= 8;
+
+ if (is_hex_digits)
+ {
+ for (i = 0, j = 0; p[i]; i ++)
+ if (('0' <= p[i] && p[i] <= '9')
+ || ('A' <= p[i] && p[i] <= 'F')
+ || ('a' <= p[i] && p[i] <= 'f'))
+ {
+ p[j] = toupper (p[i]);
+ j ++;
+ }
+ else if (p[i] == ' ')
+ /* Skip spaces. */
+ {
+ }
+ else
+ {
+ is_hex_digits = 0;
+ break;
+ }
+ if (is_hex_digits)
+ /* In case we skipped some spaces, add a new NUL terminator. */
+ {
+ p[j] = 0;
+ /* If we skipped some spaces, make sure that we still have
+ at least 8 characters. */
+ is_hex_digits = strlen (p) >= 8;
+ }
+ }
+
+ if (is_hex_digits)
+ {
+ int found_one = 0;
+ for (node = keyblock; node; node = node->next)
+ if (node->pkt->pkttype == PKT_PUBLIC_SUBKEY
+ || node->pkt->pkttype == PKT_SECRET_SUBKEY)
+ {
+ char fp[2*MAX_FINGERPRINT_LEN + 1];
+ hexfingerprint (node->pkt->pkt.public_key, fp, sizeof (fp));
+ if (strcmp (&fp[strlen (fp) - strlen (p)], p) == 0)
+ {
+ if ((node->flag & NODFLG_SELKEY))
+ node->flag &= ~NODFLG_SELKEY;
+ else
+ node->flag |= NODFLG_SELKEY;
+
+ found_one = 1;
+ }
+ }
+
+ if (found_one)
+ return 1;
+
+ tty_printf (_("No subkey with keyid %s\n"), p);
+ return 0;
+ }
if (idx == -1) /* Select all. */
{