diff options
| author | Werner Koch <[email protected]> | 2009-02-04 09:51:43 +0000 | 
|---|---|---|
| committer | Werner Koch <[email protected]> | 2009-02-04 09:51:43 +0000 | 
| commit | 259cbefd5c5d9fbd2ea3c3cd0b2a7d60af81c52b (patch) | |
| tree | 799e08043730bc4ec162b38c61ea08135119b3a2 /src | |
| parent | First take on the low-level assuan interface. (diff) | |
| download | gpgme-259cbefd5c5d9fbd2ea3c3cd0b2a7d60af81c52b.tar.gz gpgme-259cbefd5c5d9fbd2ea3c3cd0b2a7d60af81c52b.zip | |
Provide inforation about smartcards.
Diffstat (limited to '')
| -rw-r--r-- | src/ChangeLog | 8 | ||||
| -rw-r--r-- | src/gpgme.h.in | 8 | ||||
| -rw-r--r-- | src/key.c | 2 | ||||
| -rw-r--r-- | src/keylist.c | 52 | 
4 files changed, 61 insertions, 9 deletions
| diff --git a/src/ChangeLog b/src/ChangeLog index bf272bca..f98e1a3c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,11 @@ +2009-02-03  Werner Koch  <[email protected]> + +	* 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  <[email protected]>  	* opassuan.c, dirinfo.c, engine-assuan.c: New. diff --git a/src/gpgme.h.in b/src/gpgme.h.in index 4b68d801..e83b1fb1 100644 --- a/src/gpgme.h.in +++ b/src/gpgme.h.in @@ -519,8 +519,11 @@ struct _gpgme_subkey    /* 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; @@ -542,6 +545,9 @@ struct _gpgme_subkey    /* 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; @@ -327,6 +327,8 @@ gpgme_key_unref (gpgme_key_t key)        gpgme_subkey_t next = subkey->next;        if (subkey->fpr)  	free (subkey->fpr); +      if (subkey->card_number) +	free (subkey->card_number);        free (subkey);        subkey = next;      } diff --git a/src/keylist.c b/src/keylist.c index 69b0dc9e..2ee34b81 100644 --- a/src/keylist.c +++ b/src/keylist.c @@ -1,7 +1,7 @@  /* 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. @@ -351,6 +351,38 @@ set_ownertrust (gpgme_key_t key, const char *src)  } +/* 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 @@ -533,12 +565,13 @@ keylist_colon_handler (void *priv, char *line)        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: @@ -596,8 +629,11 @@ keylist_colon_handler (void *priv, char *line)        /* 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: | 
