gpgme_op_assuan_transact_start NEW.
gpgme_op_assuan_transact NEW.
gpgme_op_assuan_result NEW.
+ gpgme_subkey_t EXTENDED: New fields is_cardkey, card_number.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+2009-02-03 Werner Koch <wk@g10code.com>
+
+ * gpgme.h.in (struct _gpgme_subkey): Add fields IS_CARDKEY and
+ CARD_NUMBER..
+ * key.c (gpgme_key_unref): Release field CARD_NUMBER.
+ * keylist.c (keylist_colon_handler): Factor common code out to ...
+ (parse_sec_field15): New. Set card number.
+
2009-01-26 Werner Koch <wk@g10code.com>
* opassuan.c, dirinfo.c, engine-assuan.c: New.
/* True if subkey is qualified for signatures according to German law. */
unsigned int is_qualified : 1;
+ /* True if the secret key is stored on a smart card. */
+ unsigned int is_cardkey : 1;
+
/* Internal to GPGME, do not use. */
- unsigned int _unused : 22;
+ unsigned int _unused : 21;
/* Public key algorithm supported by this subkey. */
gpgme_pubkey_algo_t pubkey_algo;
/* The expiration timestamp, 0 if the subkey does not expire. */
long int expires;
+
+ /* The serial number of a smart card holding this key or NULL. */
+ char *card_number;
};
typedef struct _gpgme_subkey *gpgme_subkey_t;
gpgme_subkey_t next = subkey->next;
if (subkey->fpr)
free (subkey->fpr);
+ if (subkey->card_number)
+ free (subkey->card_number);
free (subkey);
subkey = next;
}
/* keylist.c - Listing keys.
Copyright (C) 2000 Werner Koch (dd9jn)
Copyright (C) 2001, 2002, 2003, 2004, 2006, 2007,
- 2008 g10 Code GmbH
+ 2008, 2009 g10 Code GmbH
This file is part of GPGME.
}
+/* Parse field 15 of a secret key or subkey. This fields holds a
+ reference to smartcards. FIELD is the content of the field and we
+ are allowed to modify it. */
+static gpg_error_t
+parse_sec_field15 (gpgme_subkey_t subkey, char *field)
+{
+ if (!*field)
+ ; /* Empty. */
+ else if (*field == '#')
+ {
+ /* This is a stub for an offline key. We reset the SECRET flag
+ of the subkey here. Note that the secret flag of the entire
+ key will be true even then. */
+ subkey->secret = 0;
+ }
+ else if (strchr ("01234567890ABCDEFabcdef", *field))
+ {
+ /* Fields starts with a hex digit; thus it is a serial number. */
+ subkey->is_cardkey = 1;
+ subkey->card_number = strdup (field);
+ if (!subkey->card_number)
+ return gpg_error_from_syserror ();
+ }
+ else
+ {
+ /* RFU. */
+ }
+
+ return 0;
+}
+
+
/* We have read an entire key into tmp_key and should now finish it.
It is assumed that this releases tmp_key. */
static void
if (fields >= 12)
set_mainkey_capability (key, field[11]);
- /* Field 15 carries special flags of a secret key. We reset the
- SECRET flag of a subkey here if the key is actually only a
- stub. The SECRET flag of the key will be true even then. */
+ /* Field 15 carries special flags of a secret key. */
if (fields >= 15 && key->secret)
- if (*field[14] == '#')
- subkey->secret = 0;
+ {
+ err = parse_sec_field15 (subkey, field[14]);
+ if (err)
+ return err;
+ }
break;
case RT_SUB:
/* Field 15 carries special flags of a secret key. */
if (fields >= 15 && key->secret)
- if (*field[14] == '#')
- subkey->secret = 0;
+ {
+ err = parse_sec_field15 (subkey, field[14]);
+ if (err)
+ return err;
+ }
break;
case RT_UID:
+2009-02-03 Werner Koch <wk@g10code.com>
+
+ * gpg/t-keylist.c (main): Check that new fields is_cardkey and
+ card_number are not set.
+
2009-01-26 Werner Koch <wk@g10code.com>
* opassuan/: New.
fprintf (stderr, "Primary key unexpectedly secret\n");
exit (1);
}
+ if (key->subkeys->is_cardkey)
+ {
+ fprintf (stderr, "Public key marked as card key\n");
+ exit (1);
+ }
+ if (key->subkeys->card_number)
+ {
+ fprintf (stderr, "Public key with card number set\n");
+ exit (1);
+ }
if (key->subkeys->pubkey_algo != GPGME_PK_DSA)
{
fprintf (stderr, "Primary key has unexpected public key algo: %s\n",
fprintf (stderr, "Secondary key unexpectedly secret\n");
exit (1);
}
+ if (key->subkeys->next->is_cardkey)
+ {
+ fprintf (stderr, "Secondary public key marked as card key\n");
+ exit (1);
+ }
+ if (key->subkeys->next->card_number)
+ {
+ fprintf (stderr, "Secondary public key with card number set\n");
+ exit (1);
+ }
if (key->subkeys->next->pubkey_algo != GPGME_PK_ELG_E)
{
fprintf (stderr, "Secondary key has unexpected public key algo: %s\n",