2000-11-10 17:50:24 +00:00
|
|
|
|
/* t-keylist.c - regression test
|
2003-04-30 03:02:50 +00:00
|
|
|
|
Copyright (C) 2000 Werner Koch (dd9jn)
|
|
|
|
|
Copyright (C) 2001, 2003 g10 Code GmbH
|
|
|
|
|
|
|
|
|
|
This file is part of GPGME.
|
|
|
|
|
|
|
|
|
|
GPGME is free software; you can redistribute it and/or modify it
|
|
|
|
|
under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
GPGME is distributed in the hope that it will be useful, but
|
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with GPGME; if not, write to the Free Software Foundation,
|
|
|
|
|
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
2000-11-10 17:50:24 +00:00
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2003-04-30 03:02:50 +00:00
|
|
|
|
#include <stdio.h>
|
2000-11-10 17:50:24 +00:00
|
|
|
|
#include <string.h>
|
|
|
|
|
|
2001-11-22 Marcus Brinkmann <marcus@g10code.de>
* gpg/: New directory.
* Makefile.am, t-verify.c, t-encrypt.c, t-signers.c, t-trustlist.c,
t-sign.c, t-keylist.c, t-import.c, t-genkey.c, t-export.c,
t-decrypt-verify.c, t-decrypt.c, t-version.c, t-data.c, mkdemodirs.
cipher-1.asc, cipher-2.asc, geheim.txt, pubdemo.asc, pubkey-1.asc,
secdemo.asc, seckey-1.asc): Move to sub directory gpg/.
* gpg/Makefile.am (INCLUDES): Include gpgme/, not include/ and
intl/.
(LDD): Correct relative path to gpgme library.
(TESTS): Remove t-version and t-data.
* gpg/t-verify.c, gpg/t-encrypt.c, gpg/t-signers.c, gpg/t-trustlist.c,
gpg/t-sign.c, gpg/t-keylist.c, gpg/t-import.c, gpg/t-genkey.c,
gpg/t-export.c, gpg/t-decrypt-verify.c, gpg/t-decrypt.c,
t-version.c, t-data.c): Include gpgme.h, not "../gpgme/gpgme.h".
* Makefile.am: New file.
* gpgsm/: New directory.
* gpgsm/Makefile.am: New file.
2001-11-22 03:01:26 +00:00
|
|
|
|
#include <gpgme.h>
|
2000-11-10 17:50:24 +00:00
|
|
|
|
|
2003-04-30 03:02:50 +00:00
|
|
|
|
|
|
|
|
|
#define fail_if_err(err) \
|
|
|
|
|
do \
|
|
|
|
|
{ \
|
|
|
|
|
if (err) \
|
|
|
|
|
{ \
|
2003-05-18 20:45:24 +00:00
|
|
|
|
fprintf (stderr, "%s:%d: gpgme_error_t %s\n", \
|
2003-04-30 03:02:50 +00:00
|
|
|
|
__FILE__, __LINE__, gpgme_strerror (err)); \
|
|
|
|
|
exit (1); \
|
|
|
|
|
} \
|
|
|
|
|
} \
|
|
|
|
|
while (0)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct
|
|
|
|
|
{
|
|
|
|
|
char *fpr;
|
|
|
|
|
char *sec_keyid;
|
|
|
|
|
struct
|
|
|
|
|
{
|
|
|
|
|
char *name;
|
|
|
|
|
char *comment;
|
|
|
|
|
char *email;
|
|
|
|
|
} uid[3];
|
|
|
|
|
}
|
|
|
|
|
keys[] =
|
|
|
|
|
{
|
|
|
|
|
{ "A0FF4590BB6122EDEF6E3C542D727CC768697734", "6AE6D7EE46A871F8",
|
|
|
|
|
{ { "Alpha Test", "demo key", "alpha@example.net" },
|
|
|
|
|
{ "Alice", "demo key", NULL },
|
|
|
|
|
{ "Alfa Test", "demo key", "alfa@example.net" } } },
|
|
|
|
|
{ "61EE841A2A27EB983B3B3C26413F4AF31AFDAB6C", "E71E72ACBC43DA60",
|
|
|
|
|
{ { "Charlie Test", "demo key", "charlie@example.net" } } },
|
|
|
|
|
{ "3531152DE293E26A07F504BC318C1FAEFAEF6D1B", "B5C79E1A7272144D",
|
|
|
|
|
{ { "Echelon", "demo key", NULL },
|
|
|
|
|
{ "Echo Test", "demo key", "echo@example.net" },
|
|
|
|
|
{ "Eve", "demo key", NULL } } },
|
|
|
|
|
{ "C9C07DCC6621B9FB8D071B1D168410A48FC282E6", "247491CC9DCAD354",
|
|
|
|
|
{ { "Golf Test", "demo key", "golf@example.net" } } },
|
|
|
|
|
{ "CD538D6CC9FB3D745ECDA5201FE8FC6F04259677", "C1C8EFDE61F76C73",
|
|
|
|
|
{ { "India Test", "demo key", "india@example.net" } } },
|
|
|
|
|
{ "3FD11083779196C2ECDD9594AD1B0FAD43C2D0C7", "86CBB34A9AF64D02",
|
|
|
|
|
{ { "Kilo Test", "demo key", "kilo@example.net" } } },
|
|
|
|
|
{ "D695676BDCEDCC2CDD6152BCFE180B1DA9E3B0B2", "5381EA4EE29BA37F",
|
|
|
|
|
{ { "Bob", "demo key", NULL },
|
|
|
|
|
{ "Bravo Test", "demo key", "bravo@example.net" } } },
|
|
|
|
|
{ "6560C59C43D031C54D7C588EEBA9F240EB9DC9E6", "06F22880B0C45424",
|
|
|
|
|
{ { "Delta Test", "demo key", "delta@example.net" } } },
|
|
|
|
|
{ "56D33268F7FE693FBB594762D4BF57F37372E243", "0A32EE79EE45198E",
|
|
|
|
|
{ { "Foxtrot Test", "demo key", "foxtrot@example.net" } } },
|
|
|
|
|
{ "9E91CBB11E4D4135583EF90513DB965534C6E3F1", "76E26537D622AD0A",
|
|
|
|
|
{ { "Hotel Test", "demo key", "hotel@example.net" } } },
|
|
|
|
|
{ "F8F1EDC73995AB739AD54B380C820C71D2699313", "BD0B108735F8F136",
|
|
|
|
|
{ { "Juliet Test", "demo key", "juliet@example.net" } } },
|
|
|
|
|
{ "1DDD28CEF714F5B03B8C246937CAB51FB79103F8", "0363B449FE56350C",
|
|
|
|
|
{ { "Lima Test", "demo key", "lima@example.net" } } },
|
|
|
|
|
{ "2686AA191A278013992C72EBBE794852BE5CF886", "5F600A834F31EAE8",
|
|
|
|
|
{ { "Mallory", "demo key", NULL },
|
|
|
|
|
{ "Mike Test", "demo key", "mike@example.net" } } },
|
|
|
|
|
{ "5AB9D6D7BAA1C95B3BAA3D9425B00FD430CEC684", "4C1D63308B70E472",
|
|
|
|
|
{ { "November Test", "demo key", "november@example.net" } } },
|
|
|
|
|
{ "43929E89F8F79381678CAE515F6356BA6D9732AC", "FF0785712681619F",
|
|
|
|
|
{ { "Oscar Test", "demo key", "oscar@example.net" } } },
|
|
|
|
|
{ "6FAA9C201E5E26DCBAEC39FD5D15E01D3FF13206", "2764E18263330D9C",
|
|
|
|
|
{ { "Papa test", "demo key", "papa@example.net" } } },
|
|
|
|
|
{ "A7969DA1C3297AA96D49843F1C67EC133C661C84", "6CDCFC44A029ACF4",
|
|
|
|
|
{ { "Quebec Test", "demo key", "quebec@example.net" } } },
|
|
|
|
|
{ "38FBE1E4BF6A5E1242C8F6A13BDBEDB1777FBED3", "9FAB805A11D102EA",
|
|
|
|
|
{ { "Romeo Test", "demo key", "romeo@example.net" } } },
|
|
|
|
|
{ "045B2334ADD69FC221076841A5E67F7FA3AE3EA1", "93B88B0F0F1B50B4",
|
|
|
|
|
{ { "Sierra Test", "demo key", "sierra@example.net" } } },
|
|
|
|
|
{ "ECAC774F4EEEB0620767044A58CB9A4C85A81F38", "97B60E01101C0402",
|
|
|
|
|
{ { "Tango Test", "demo key", "tango@example.net" } } },
|
|
|
|
|
{ "0DBCAD3F08843B9557C6C4D4A94C0F75653244D6", "93079B915522BDB9",
|
|
|
|
|
{ { "Uniform Test", "demo key", "uniform@example.net" } } },
|
|
|
|
|
{ "E8143C489C8D41124DC40D0B47AF4B6961F04784", "04071FB807287134",
|
|
|
|
|
{ { "Victor Test", "demo key", "victor@example.org" } } },
|
|
|
|
|
{ "E8D6C90B683B0982BD557A99DEF0F7B8EC67DBDE", "D7FBB421FD6E27F6",
|
|
|
|
|
{ { "Whisky Test", "demo key", "whisky@example.net" } } },
|
|
|
|
|
{ "04C1DF62EFA0EBB00519B06A8979A6C5567FB34A", "5CC6F87F41E408BE",
|
|
|
|
|
{ { "XRay Test", "demo key", "xray@example.net" } } },
|
|
|
|
|
{ "ED9B316F78644A58D042655A9EEF34CD4B11B25F", "5ADFD255F7B080AD",
|
|
|
|
|
{ { "Yankee Test", "demo key", "yankee@example.net" } } },
|
|
|
|
|
{ "23FD347A419429BACCD5E72D6BC4778054ACD246", "EF9DC276A172C881",
|
|
|
|
|
{ { "Zulu Test", "demo key", "zulu@example.net" } } },
|
|
|
|
|
{ "ADAB7FCC1F4DE2616ECFA402AF82244F9CD9FD55", "087DD7E0381701C4",
|
|
|
|
|
{ { "Joe Random Hacker", "test key with passphrase \"x\"",
|
|
|
|
|
"joe@setq.org" } } },
|
|
|
|
|
{ NULL }
|
|
|
|
|
};
|
2000-11-10 17:50:24 +00:00
|
|
|
|
|
2003-04-30 03:02:50 +00:00
|
|
|
|
int
|
|
|
|
|
main (int argc, char **argv)
|
2000-11-10 17:50:24 +00:00
|
|
|
|
{
|
2003-05-18 20:45:24 +00:00
|
|
|
|
gpgme_error_t err;
|
|
|
|
|
gpgme_ctx_t ctx;
|
|
|
|
|
gpgme_key_t key;
|
|
|
|
|
gpgme_keylist_result_t result;
|
2003-04-30 03:02:50 +00:00
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
|
|
err = gpgme_engine_check_version (GPGME_PROTOCOL_OpenPGP);
|
|
|
|
|
fail_if_err (err);
|
|
|
|
|
|
|
|
|
|
err = gpgme_new (&ctx);
|
|
|
|
|
fail_if_err (err);
|
2000-11-10 17:50:24 +00:00
|
|
|
|
|
2003-04-30 03:02:50 +00:00
|
|
|
|
err = gpgme_op_keylist_start (ctx, NULL, 0);
|
2002-09-02 13:01:29 +00:00
|
|
|
|
fail_if_err (err);
|
2000-11-10 20:56:02 +00:00
|
|
|
|
|
2002-09-02 13:01:29 +00:00
|
|
|
|
while (!(err = gpgme_op_keylist_next (ctx, &key)))
|
|
|
|
|
{
|
2003-04-30 03:02:50 +00:00
|
|
|
|
if (!keys[i].fpr)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "More keys returned than expected\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
2000-11-10 17:50:24 +00:00
|
|
|
|
|
2003-04-30 03:02:50 +00:00
|
|
|
|
/* Global key flags. */
|
|
|
|
|
if (key->revoked)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Key unexpectedly revoked\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->expired)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Key unexpectedly expired\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->disabled)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Key unexpectedly disabled\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->invalid)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Key unexpectedly invalid\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (!key->can_encrypt)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Key unexpectedly unusable for encryption\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (!key->can_sign)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Key unexpectedly unusable for signing\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (!key->can_certify)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Key unexpectedly unusable for certifications\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->secret)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Key unexpectedly secret\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->protocol != GPGME_PROTOCOL_OpenPGP)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Key has unexpected protocol: %s\n",
|
|
|
|
|
gpgme_get_protocol_name (key->protocol));
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->issuer_serial)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Key unexpectedly carries issuer serial: %s\n",
|
|
|
|
|
key->issuer_serial);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->issuer_name)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Key unexpectedly carries issuer name: %s\n",
|
|
|
|
|
key->issuer_name);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->chain_id)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Key unexpectedly carries chain ID: %s\n",
|
|
|
|
|
key->chain_id);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->owner_trust != GPGME_VALIDITY_UNKNOWN)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Key has unexpected owner trust: %i\n",
|
|
|
|
|
key->owner_trust);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (!key->subkeys || !key->subkeys->next || key->subkeys->next->next)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Key has unexpected number of subkeys\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
2000-11-10 17:50:24 +00:00
|
|
|
|
|
2003-04-30 03:02:50 +00:00
|
|
|
|
/* Primary key. */
|
|
|
|
|
if (key->subkeys->revoked)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Primary key unexpectedly revoked\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->subkeys->expired)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Primary key unexpectedly expired\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->subkeys->disabled)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Primary key unexpectedly disabled\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->subkeys->invalid)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Primary key unexpectedly invalid\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->subkeys->can_encrypt)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Primary key unexpectedly usable for encryption\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (!key->subkeys->can_sign)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Primary key unexpectedly unusable for signing\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (!key->subkeys->can_certify)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Primary key unexpectedly unusable for certifications\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->subkeys->secret)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Primary key unexpectedly secret\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->subkeys->pubkey_algo != GPGME_PK_DSA)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Primary key has unexpected public key algo: %s\n",
|
|
|
|
|
gpgme_pubkey_algo_name (key->subkeys->pubkey_algo));
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->subkeys->length != 1024)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Primary key has unexpected length: %i\n",
|
|
|
|
|
key->subkeys->length);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (strcmp (key->subkeys->keyid, &keys[i].fpr[40 - 16]))
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Primary key has unexpected key ID: %s\n",
|
|
|
|
|
key->subkeys->keyid);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (strcmp (key->subkeys->fpr, keys[i].fpr))
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Primary key has unexpected fingerprint: %s\n",
|
|
|
|
|
key->subkeys->fpr);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->subkeys->expires)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Primary key unexpectedly expires: %lu\n",
|
|
|
|
|
key->subkeys->expires);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
2002-09-02 13:01:29 +00:00
|
|
|
|
|
2003-04-30 03:02:50 +00:00
|
|
|
|
/* Secondary key. */
|
|
|
|
|
if (key->subkeys->next->revoked)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Secondary key unexpectedly revoked\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->subkeys->next->expired)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Secondary key unexpectedly expired\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->subkeys->next->disabled)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Secondary key unexpectedly disabled\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->subkeys->next->invalid)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Secondary key unexpectedly invalid\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (!key->subkeys->next->can_encrypt)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Secondary key unexpectedly unusable for encryption\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->subkeys->next->can_sign)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Secondary key unexpectedly usable for signing\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->subkeys->next->can_certify)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Secondary key unexpectedly usable for certifications\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->subkeys->next->secret)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Secondary key unexpectedly secret\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->subkeys->next->pubkey_algo != GPGME_PK_ELG_E)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Secondary key has unexpected public key algo: %s\n",
|
|
|
|
|
gpgme_pubkey_algo_name (key->subkeys->next->pubkey_algo));
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->subkeys->next->length != 1024)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Secondary key has unexpected length: %i\n",
|
|
|
|
|
key->subkeys->next->length);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (strcmp (key->subkeys->next->keyid, keys[i].sec_keyid))
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Secondary key has unexpected key ID: %s\n",
|
|
|
|
|
key->subkeys->next->keyid);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->subkeys->next->fpr)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Secondary key has unexpectedly a fingerprint: %s\n",
|
|
|
|
|
key->subkeys->next->fpr);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->subkeys->next->expires)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Secondary key unexpectedly expires: %lu\n",
|
|
|
|
|
key->subkeys->next->expires);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
2001-09-17 10:36:05 +00:00
|
|
|
|
|
2003-04-30 03:02:50 +00:00
|
|
|
|
/* FIXME: The below test will crash if we want to check for a
|
|
|
|
|
name, comment or email that doesn't exist in the key's user
|
|
|
|
|
IDs. */
|
|
|
|
|
if (!((!keys[i].uid[0].name && !key->uids)
|
|
|
|
|
|| (keys[i].uid[0].name && !keys[i].uid[1].name
|
|
|
|
|
&& key->uids && !key->uids->next)
|
|
|
|
|
|| (keys[i].uid[0].name && keys[i].uid[1].name
|
|
|
|
|
&& !keys[i].uid[2].name
|
|
|
|
|
&& key->uids && key->uids->next && !key->uids->next->next)
|
|
|
|
|
|| (keys[i].uid[0].name && keys[i].uid[1].name
|
|
|
|
|
&& keys[i].uid[2].name
|
|
|
|
|
&& key->uids && key->uids->next && key->uids->next->next
|
|
|
|
|
&& !key->uids->next->next->next)))
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Key has unexpected number of user IDs\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->uids && key->uids->revoked)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "First user ID unexpectedly revoked\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->uids && key->uids->invalid)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "First user ID unexpectedly invalid\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->uids && key->uids->validity != GPGME_VALIDITY_UNKNOWN)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "First user ID has unexpectedly validity: %i\n",
|
|
|
|
|
key->uids->validity);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->uids && key->uids->signatures)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "First user ID unexpectedly signed\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (keys[i].uid[0].name
|
|
|
|
|
&& strcmp (keys[i].uid[0].name, key->uids->name))
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Unexpected name in first user ID: %s\n",
|
|
|
|
|
key->uids->name);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (keys[i].uid[0].comment
|
|
|
|
|
&& strcmp (keys[i].uid[0].comment, key->uids->comment))
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Unexpected comment in first user ID: %s\n",
|
|
|
|
|
key->uids->comment);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (keys[i].uid[0].email
|
|
|
|
|
&& strcmp (keys[i].uid[0].email, key->uids->email))
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Unexpected email in first user ID: %s\n",
|
|
|
|
|
key->uids->email);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->uids && key->uids->next && key->uids->next->revoked)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Second user ID unexpectedly revoked\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->uids && key->uids->next && key->uids->next->invalid)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Second user ID unexpectedly invalid\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->uids && key->uids->next
|
|
|
|
|
&& key->uids->next->validity != GPGME_VALIDITY_UNKNOWN)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Second user ID has unexpectedly validity: %i\n",
|
|
|
|
|
key->uids->next->validity);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->uids && key->uids->next && key->uids->next->signatures)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Second user ID unexpectedly signed\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (keys[i].uid[1].name
|
|
|
|
|
&& strcmp (keys[i].uid[1].name, key->uids->next->name))
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Unexpected name in second user ID: %s\n",
|
|
|
|
|
key->uids->next->name);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (keys[i].uid[1].comment
|
|
|
|
|
&& strcmp (keys[i].uid[1].comment, key->uids->next->comment))
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Unexpected comment in second user ID: %s\n",
|
|
|
|
|
key->uids->next->comment);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (keys[i].uid[1].email
|
|
|
|
|
&& strcmp (keys[i].uid[1].email, key->uids->next->email))
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Unexpected email in second user ID: %s\n",
|
|
|
|
|
key->uids->next->email);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->uids && key->uids->next && key->uids->next->next
|
|
|
|
|
&& key->uids->next->next->revoked)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Third user ID unexpectedly revoked\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->uids && key->uids->next && key->uids->next->next
|
|
|
|
|
&& key->uids->next->next->invalid)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Third user ID unexpectedly invalid\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->uids && key->uids->next && key->uids->next->next
|
|
|
|
|
&& key->uids->next->next->validity != GPGME_VALIDITY_UNKNOWN)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Third user ID has unexpectedly validity: %i\n",
|
|
|
|
|
key->uids->next->next->validity);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (key->uids && key->uids->next && key->uids->next->next
|
|
|
|
|
&& key->uids->next->next->signatures)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Third user ID unexpectedly signed\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (keys[i].uid[2].name
|
|
|
|
|
&& strcmp (keys[i].uid[2].name, key->uids->next->next->name))
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Unexpected name in third user ID: %s\n",
|
|
|
|
|
key->uids->next->next->name);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (keys[i].uid[2].comment
|
|
|
|
|
&& strcmp (keys[i].uid[2].comment, key->uids->next->next->comment))
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Unexpected comment in third user ID: %s\n",
|
|
|
|
|
key->uids->next->next->comment);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
if (keys[i].uid[2].email
|
|
|
|
|
&& strcmp (keys[i].uid[2].email, key->uids->next->next->email))
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Unexpected email in third user ID: %s\n",
|
|
|
|
|
key->uids->next->next->email);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gpgme_key_unref (key);
|
|
|
|
|
i++;
|
|
|
|
|
}
|
2002-09-02 13:01:29 +00:00
|
|
|
|
if (err != GPGME_EOF)
|
|
|
|
|
fail_if_err (err);
|
2003-04-30 03:02:50 +00:00
|
|
|
|
err = gpgme_op_keylist_end (ctx);
|
|
|
|
|
fail_if_err (err);
|
2002-09-02 13:01:29 +00:00
|
|
|
|
|
2003-04-30 03:02:50 +00:00
|
|
|
|
result = gpgme_op_keylist_result (ctx);
|
|
|
|
|
if (result->truncated)
|
2002-09-02 13:01:29 +00:00
|
|
|
|
{
|
2003-04-30 03:02:50 +00:00
|
|
|
|
fprintf (stderr, "Key listing unexpectedly truncated\n");
|
|
|
|
|
exit (1);
|
2000-11-10 17:50:24 +00:00
|
|
|
|
}
|
2002-09-02 13:01:29 +00:00
|
|
|
|
|
2003-04-30 03:02:50 +00:00
|
|
|
|
if (keys[i].fpr)
|
2002-09-02 13:01:29 +00:00
|
|
|
|
{
|
2003-04-30 03:02:50 +00:00
|
|
|
|
fprintf (stderr, "Less keys returned than expected\n");
|
|
|
|
|
exit (1);
|
2002-09-02 13:01:29 +00:00
|
|
|
|
}
|
2001-09-17 10:36:05 +00:00
|
|
|
|
|
2003-04-30 03:02:50 +00:00
|
|
|
|
gpgme_release (ctx);
|
2002-09-02 13:01:29 +00:00
|
|
|
|
return 0;
|
2000-11-10 17:50:24 +00:00
|
|
|
|
}
|