2005-09-29 Marcus Brinkmann <marcus@g10code.de>
authorMarcus Brinkmann <mb@g10code.com>
Thu, 29 Sep 2005 17:54:25 +0000 (17:54 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Thu, 29 Sep 2005 17:54:25 +0000 (17:54 +0000)
* gpgme.h (struct _gpgme_key): Add field is_qualified.
(struct _gpgme_subkey): Likewise.

gpgme/ChangeLog
gpgme/gpgme.h

index 1fb35ab1faf058f150e3d6e03f0f994d230887d9..37334e4748ad27daf0c7e3d3b5d89a397c67bfb9 100644 (file)
@@ -1,3 +1,8 @@
+2005-09-29  Marcus Brinkmann  <marcus@g10code.de>
+
+       * gpgme.h (struct _gpgme_key): Add field is_qualified.
+       (struct _gpgme_subkey): Likewise.
+
 2005-09-23  Werner Koch  <wk@g10code.com>
 
        * w32-io.c (_gpgme_io_pipe): Removed use of environment variable
index 0893096201ee2454089278c5cb0b7a3a565972ff..5687171503974f1aa0e26b0f0058672fe6ac2dc5 100644 (file)
@@ -465,8 +465,11 @@ struct _gpgme_subkey
   /* True if subkey can be used for authentication.  */
   unsigned int can_authenticate : 1;
 
+  /* True if subkey is qualified for signatures according to German law.  */
+  unsigned int is_qualified : 1;
+
   /* Internal to GPGME, do not use.  */
-  unsigned int _unused : 23;
+  unsigned int _unused : 22;
   
   /* Public key algorithm supported by this subkey.  */
   gpgme_pubkey_algo_t pubkey_algo;
@@ -626,8 +629,11 @@ struct _gpgme_key
   /* True if key can be used for authentication.  */
   unsigned int can_authenticate : 1;
 
+  /* True if subkey is qualified for signatures according to German law.  */
+  unsigned int is_qualified : 1;
+
   /* Internal to GPGME, do not use.  */
-  unsigned int _unused : 23;
+  unsigned int _unused : 22;
 
   /* This is the protocol supported by this key.  */
   gpgme_protocol_t protocol;