[Pkg-gnupg-commit] [gpgme] 89/103: tests: Print userid signatures in run-keylist

Daniel Kahn Gillmor dkg at fifthhorseman.net
Thu Dec 14 18:53:07 UTC 2017


This is an automated email from the git hooks/post-receive script.

dkg pushed a commit to branch master
in repository gpgme.

commit 5ba1cbdf39efd90c7987bfc2bc030b6504e70076
Author: Andre Heinecke <aheinecke at intevation.de>
Date:   Thu Dec 7 13:47:18 2017 +0100

    tests: Print userid signatures in run-keylist
    
    * tests/run-keylist.c (main): Print UID signatures if there
    are any.
---
 tests/run-keylist.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/tests/run-keylist.c b/tests/run-keylist.c
index dd310e5..295251a 100644
--- a/tests/run-keylist.c
+++ b/tests/run-keylist.c
@@ -228,8 +228,10 @@ main (int argc, char **argv)
     {
       gpgme_user_id_t uid;
       gpgme_tofu_info_t ti;
+      gpgme_key_sig_t ks;
       int nuids;
       int nsub;
+      int nsigs;
 
       printf ("keyid   : %s\n", key->subkeys?nonnull (key->subkeys->keyid):"?");
       printf ("fpr     : %s\n", key->subkeys?nonnull (key->subkeys->fpr):"?");
@@ -320,6 +322,14 @@ main (int argc, char **argv)
               printf ("   first: %s\n", isotimestr (ti->encrfirst));
               printf ("    last: %s\n", isotimestr (ti->encrlast));
             }
+          for (nsigs=0, ks=uid->signatures; ks; ks = ks->next, nsigs++)
+            {
+              printf ("signature %d: %s\n", nsigs, nonnull (ks->uid));
+              printf ("       keyid: %s\n", nonnull (ks->keyid));
+              printf ("     created: %s\n", isotimestr(ks->timestamp));
+              printf ("     expires: %s\n", isotimestr(ks->expires));
+              printf ("       class: %x\n", ks->sig_class);
+            }
         }
 
       putchar ('\n');

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-gnupg/gpgme.git



More information about the Pkg-gnupg-commit mailing list