Imported Upstream version 1.7.0
[platform/upstream/gpgme.git] / tests / run-sign.c
1 /* run-sign.c  - Helper to perform a sign operation
2    Copyright (C) 2009 g10 Code GmbH
3
4    This file is part of GPGME.
5
6    GPGME is free software; you can redistribute it and/or modify it
7    under the terms of the GNU Lesser General Public License as
8    published by the Free Software Foundation; either version 2.1 of
9    the License, or (at your option) any later version.
10
11    GPGME is distributed in the hope that it will be useful, but
12    WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Lesser General Public License for more details.
15
16    You should have received a copy of the GNU Lesser General Public
17    License along with this program; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20 /* We need to include config.h so that we know whether we are building
21    with large file system (LFS) support. */
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdlib.h>
27 #include <stdio.h>
28 #include <string.h>
29
30 #include <gpgme.h>
31
32 #define PGM "run-sign"
33
34 #include "run-support.h"
35
36
37 static int verbose;
38
39 static gpg_error_t
40 status_cb (void *opaque, const char *keyword, const char *value)
41 {
42   (void)opaque;
43   printf ("status_cb: %s %s\n", keyword, value);
44   return 0;
45 }
46
47
48 static void
49 print_result (gpgme_sign_result_t result, gpgme_sig_mode_t type)
50 {
51   gpgme_invalid_key_t invkey;
52   gpgme_new_signature_t sig;
53
54   (void)type;
55
56   for (invkey = result->invalid_signers; invkey; invkey = invkey->next)
57     printf ("Signing key `%s' not used: %s <%s>\n",
58             nonnull (invkey->fpr),
59             gpg_strerror (invkey->reason), gpg_strsource (invkey->reason));
60
61   for (sig = result->signatures; sig; sig = sig->next)
62     {
63       printf ("Key fingerprint: %s\n", nonnull (sig->fpr));
64       printf ("Signature type : %d\n", sig->type);
65       printf ("Public key algo: %d\n", sig->pubkey_algo);
66       printf ("Hash algo .....: %d\n", sig->hash_algo);
67       printf ("Creation time .: %ld\n", sig->timestamp);
68       printf ("Sig class .....: 0x%u\n", sig->sig_class);
69     }
70 }
71
72
73
74 static int
75 show_usage (int ex)
76 {
77   fputs ("usage: " PGM " [options] FILE\n\n"
78          "Options:\n"
79          "  --verbose        run in verbose mode\n"
80          "  --status         print status lines from the backend\n"
81          "  --openpgp        use the OpenPGP protocol (default)\n"
82          "  --cms            use the CMS protocol\n"
83          "  --uiserver       use the UI server\n"
84          "  --loopback       use a loopback pinentry\n"
85          "  --key NAME       use key NAME for signing\n"
86          , stderr);
87   exit (ex);
88 }
89
90
91 int
92 main (int argc, char **argv)
93 {
94   int last_argc = -1;
95   gpgme_error_t err;
96   gpgme_ctx_t ctx;
97   const char *key_string = NULL;
98   gpgme_protocol_t protocol = GPGME_PROTOCOL_OpenPGP;
99   gpgme_sig_mode_t sigmode = GPGME_SIG_MODE_NORMAL;
100   gpgme_data_t in, out;
101   gpgme_sign_result_t result;
102   int print_status = 0;
103   int use_loopback = 0;
104
105   if (argc)
106     { argc--; argv++; }
107
108   while (argc && last_argc != argc )
109     {
110       last_argc = argc;
111       if (!strcmp (*argv, "--"))
112         {
113           argc--; argv++;
114           break;
115         }
116       else if (!strcmp (*argv, "--help"))
117         show_usage (0);
118       else if (!strcmp (*argv, "--verbose"))
119         {
120           verbose = 1;
121           argc--; argv++;
122         }
123       else if (!strcmp (*argv, "--status"))
124         {
125           print_status = 1;
126           argc--; argv++;
127         }
128       else if (!strcmp (*argv, "--openpgp"))
129         {
130           protocol = GPGME_PROTOCOL_OpenPGP;
131           argc--; argv++;
132         }
133       else if (!strcmp (*argv, "--cms"))
134         {
135           protocol = GPGME_PROTOCOL_CMS;
136           argc--; argv++;
137         }
138       else if (!strcmp (*argv, "--uiserver"))
139         {
140           protocol = GPGME_PROTOCOL_UISERVER;
141           argc--; argv++;
142         }
143       else if (!strcmp (*argv, "--key"))
144         {
145           argc--; argv++;
146           if (!argc)
147             show_usage (1);
148           key_string = *argv;
149           argc--; argv++;
150         }
151       else if (!strcmp (*argv, "--loopback"))
152         {
153           use_loopback = 1;
154           argc--; argv++;
155         }
156       else if (!strncmp (*argv, "--", 2))
157         show_usage (1);
158
159     }
160
161   if (argc != 1)
162     show_usage (1);
163
164   if (key_string && protocol == GPGME_PROTOCOL_UISERVER)
165     {
166       fprintf (stderr, PGM ": ignoring --key in UI-server mode\n");
167       key_string = NULL;
168     }
169
170   init_gpgme (protocol);
171
172   err = gpgme_new (&ctx);
173   fail_if_err (err);
174   gpgme_set_protocol (ctx, protocol);
175   gpgme_set_armor (ctx, 1);
176   if (print_status)
177     gpgme_set_status_cb (ctx, status_cb, NULL);
178   if (use_loopback)
179     gpgme_set_pinentry_mode (ctx, GPGME_PINENTRY_MODE_LOOPBACK);
180
181   if (key_string)
182     {
183       gpgme_key_t akey;
184
185       err = gpgme_get_key (ctx, key_string, &akey, 1);
186       if (err)
187         {
188           exit (1);
189         }
190       err = gpgme_signers_add (ctx, akey);
191       fail_if_err (err);
192       gpgme_key_unref (akey);
193     }
194
195   err = gpgme_data_new_from_file (&in, *argv, 1);
196   if (err)
197     {
198       fprintf (stderr, PGM ": error reading `%s': %s\n",
199                *argv, gpg_strerror (err));
200       exit (1);
201     }
202
203   err = gpgme_data_new (&out);
204   fail_if_err (err);
205
206   err = gpgme_op_sign (ctx, in, out, sigmode);
207   result = gpgme_op_sign_result (ctx);
208   if (result)
209     print_result (result, sigmode);
210   if (err)
211     {
212       fprintf (stderr, PGM ": signing failed: %s\n", gpg_strerror (err));
213       exit (1);
214     }
215
216   fputs ("Begin Output:\n", stdout);
217   print_data (out);
218   fputs ("End Output.\n", stdout);
219   gpgme_data_release (out);
220
221   gpgme_data_release (in);
222
223   gpgme_release (ctx);
224   return 0;
225 }