[svn] gpgme - r1100 - trunk/gpgme

svn author marcus cvs at cvs.gnupg.org
Thu Sep 29 19:54:26 CEST 2005


Author: marcus
Date: 2005-09-29 19:54:25 +0200 (Thu, 29 Sep 2005)
New Revision: 1100

Modified:
   trunk/gpgme/ChangeLog
   trunk/gpgme/gpgme.h
Log:
2005-09-29  Marcus Brinkmann  <marcus at g10code.de>

	* gpgme.h (struct _gpgme_key): Add field is_qualified.
	(struct _gpgme_subkey): Likewise.


Modified: trunk/gpgme/ChangeLog
===================================================================
--- trunk/gpgme/ChangeLog	2005-09-23 13:29:04 UTC (rev 1099)
+++ trunk/gpgme/ChangeLog	2005-09-29 17:54:25 UTC (rev 1100)
@@ -1,3 +1,8 @@
+2005-09-29  Marcus Brinkmann  <marcus at g10code.de>
+
+	* gpgme.h (struct _gpgme_key): Add field is_qualified.
+	(struct _gpgme_subkey): Likewise.
+
 2005-09-23  Werner Koch  <wk at g10code.com>
 
 	* w32-io.c (_gpgme_io_pipe): Removed use of environment variable

Modified: trunk/gpgme/gpgme.h
===================================================================
--- trunk/gpgme/gpgme.h	2005-09-23 13:29:04 UTC (rev 1099)
+++ trunk/gpgme/gpgme.h	2005-09-29 17:54:25 UTC (rev 1100)
@@ -465,8 +465,11 @@
   /* 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 @@
   /* 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;




More information about the Gnupg-commits mailing list