]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - cmdgen.c
Fix `puttygen-unix-perms': f_open(), PuTTY's wrapper on fopen, now
[PuTTY.git] / cmdgen.c
1 /*
2  * cmdgen.c - command-line form of PuTTYgen
3  */
4
5 #define PUTTY_DO_GLOBALS
6
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include <ctype.h>
10 #include <limits.h>
11 #include <assert.h>
12 #include <time.h>
13
14 #include "putty.h"
15 #include "ssh.h"
16
17 #ifdef TEST_CMDGEN
18 /*
19  * This section overrides some definitions below for test purposes.
20  * When compiled with -DTEST_CMDGEN:
21  * 
22  *  - Calls to get_random_data() are replaced with the diagnostic
23  *    function below (I #define the name so that I can still link
24  *    with the original set of modules without symbol clash), in
25  *    order to avoid depleting the test system's /dev/random
26  *    unnecessarily.
27  * 
28  *  - Calls to console_get_userpass_input() are replaced with the
29  *    diagnostic function below, so that I can run tests in an
30  *    automated manner and provide their interactive passphrase
31  *    inputs.
32  * 
33  *  - main() is renamed to cmdgen_main(); at the bottom of the file
34  *    I define another main() which calls the former repeatedly to
35  *    run tests.
36  */
37 #define get_random_data get_random_data_diagnostic
38 char *get_random_data(int len)
39 {
40     char *buf = snewn(len, char);
41     memset(buf, 'x', len);
42     return buf;
43 }
44 #define console_get_userpass_input console_get_userpass_input_diagnostic
45 int nprompts, promptsgot;
46 const char *prompts[3];
47 int console_get_userpass_input(prompts_t *p, unsigned char *in, int inlen)
48 {
49     size_t i;
50     int ret = 1;
51     for (i = 0; i < p->n_prompts; i++) {
52         if (promptsgot < nprompts) {
53             assert(strlen(prompts[promptsgot]) < p->prompts[i]->result_len);
54             strcpy(p->prompts[i]->result, prompts[promptsgot++]);
55         } else {
56             promptsgot++;           /* track number of requests anyway */
57             ret = 0;
58         }
59     }
60     return ret;
61 }
62 #define main cmdgen_main
63 #endif
64
65 struct progress {
66     int phase, current;
67 };
68
69 static void progress_update(void *param, int action, int phase, int iprogress)
70 {
71     struct progress *p = (struct progress *)param;
72     if (action != PROGFN_PROGRESS)
73         return;
74     if (phase > p->phase) {
75         if (p->phase >= 0)
76             fputc('\n', stderr);
77         p->phase = phase;
78         if (iprogress >= 0)
79             p->current = iprogress - 1;
80         else
81             p->current = iprogress;
82     }
83     while (p->current < iprogress) {
84         fputc('+', stdout);
85         p->current++;
86     }
87     fflush(stdout);
88 }
89
90 static void no_progress(void *param, int action, int phase, int iprogress)
91 {
92 }
93
94 void modalfatalbox(char *p, ...)
95 {
96     va_list ap;
97     fprintf(stderr, "FATAL ERROR: ");
98     va_start(ap, p);
99     vfprintf(stderr, p, ap);
100     va_end(ap);
101     fputc('\n', stderr);
102     cleanup_exit(1);
103 }
104
105 /*
106  * Stubs to let everything else link sensibly.
107  */
108 void log_eventlog(void *handle, const char *event)
109 {
110 }
111 char *x_get_default(const char *key)
112 {
113     return NULL;
114 }
115 void sk_cleanup(void)
116 {
117 }
118
119 void showversion(void)
120 {
121     char *verstr = dupstr(ver);
122     verstr[0] = tolower(verstr[0]);
123     printf("PuTTYgen %s\n", verstr);
124     sfree(verstr);
125 }
126
127 void usage(int standalone)
128 {
129     fprintf(stderr,
130             "Usage: puttygen ( keyfile | -t type [ -b bits ] )\n"
131             "                [ -C comment ] [ -P ] [ -q ]\n"
132             "                [ -o output-keyfile ] [ -O type | -l | -L"
133             " | -p ]\n");
134     if (standalone)
135         fprintf(stderr,
136                 "Use \"puttygen --help\" for more detail.\n");
137 }
138
139 void help(void)
140 {
141     /*
142      * Help message is an extended version of the usage message. So
143      * start with that, plus a version heading.
144      */
145     showversion();
146     usage(FALSE);
147     fprintf(stderr,
148             "  -t    specify key type when generating (rsa, dsa, rsa1)\n"
149             "  -b    specify number of bits when generating key\n"
150             "  -C    change or specify key comment\n"
151             "  -P    change key passphrase\n"
152             "  -q    quiet: do not display progress bar\n"
153             "  -O    specify output type:\n"
154             "           private             output PuTTY private key format\n"
155             "           private-openssh     export OpenSSH private key\n"
156             "           private-sshcom      export ssh.com private key\n"
157             "           public              standard / ssh.com public key\n"
158             "           public-openssh      OpenSSH public key\n"
159             "           fingerprint         output the key fingerprint\n"
160             "  -o    specify output file\n"
161             "  -l    equivalent to `-O fingerprint'\n"
162             "  -L    equivalent to `-O public-openssh'\n"
163             "  -p    equivalent to `-O public'\n"
164             );
165 }
166
167 static int save_ssh2_pubkey(char *filename, char *comment,
168                             void *v_pub_blob, int pub_len)
169 {
170     unsigned char *pub_blob = (unsigned char *)v_pub_blob;
171     char *p;
172     int i, column;
173     FILE *fp;
174
175     if (filename) {
176         fp = fopen(filename, "wb");
177         if (!fp)
178             return 0;
179     } else
180         fp = stdout;
181
182     fprintf(fp, "---- BEGIN SSH2 PUBLIC KEY ----\n");
183
184     if (comment) {
185         fprintf(fp, "Comment: \"");
186         for (p = comment; *p; p++) {
187             if (*p == '\\' || *p == '\"')
188                 fputc('\\', fp);
189             fputc(*p, fp);
190         }
191         fprintf(fp, "\"\n");
192     }
193
194     i = 0;
195     column = 0;
196     while (i < pub_len) {
197         char buf[5];
198         int n = (pub_len - i < 3 ? pub_len - i : 3);
199         base64_encode_atom(pub_blob + i, n, buf);
200         i += n;
201         buf[4] = '\0';
202         fputs(buf, fp);
203         if (++column >= 16) {
204             fputc('\n', fp);
205             column = 0;
206         }
207     }
208     if (column > 0)
209         fputc('\n', fp);
210     
211     fprintf(fp, "---- END SSH2 PUBLIC KEY ----\n");
212     if (filename)
213         fclose(fp);
214     return 1;
215 }
216
217 static int move(char *from, char *to)
218 {
219     int ret;
220
221     ret = rename(from, to);
222     if (ret) {
223         /*
224          * This OS may require us to remove the original file first.
225          */
226         remove(to);
227         ret = rename(from, to);
228     }
229     if (ret) {
230         perror("puttygen: cannot move new file on to old one");
231         return FALSE;
232     }
233     return TRUE;
234 }
235
236 static char *blobfp(char *alg, int bits, unsigned char *blob, int bloblen)
237 {
238     char buffer[128];
239     unsigned char digest[16];
240     struct MD5Context md5c;
241     int i;
242
243     MD5Init(&md5c);
244     MD5Update(&md5c, blob, bloblen);
245     MD5Final(digest, &md5c);
246
247     sprintf(buffer, "%s ", alg);
248     if (bits > 0)
249         sprintf(buffer + strlen(buffer), "%d ", bits);
250     for (i = 0; i < 16; i++)
251         sprintf(buffer + strlen(buffer), "%s%02x", i ? ":" : "",
252                 digest[i]);
253
254     return dupstr(buffer);
255 }
256
257 int main(int argc, char **argv)
258 {
259     char *infile = NULL;
260     Filename infilename;
261     enum { NOKEYGEN, RSA1, RSA2, DSA } keytype = NOKEYGEN;    
262     char *outfile = NULL, *outfiletmp = NULL;
263     Filename outfilename;
264     enum { PRIVATE, PUBLIC, PUBLICO, FP, OPENSSH, SSHCOM } outtype = PRIVATE;
265     int bits = 1024;
266     char *comment = NULL, *origcomment = NULL;
267     int change_passphrase = FALSE;
268     int errs = FALSE, nogo = FALSE;
269     int intype = SSH_KEYTYPE_UNOPENABLE;
270     int sshver = 0;
271     struct ssh2_userkey *ssh2key = NULL;
272     struct RSAKey *ssh1key = NULL;
273     unsigned char *ssh2blob = NULL;
274     char *ssh2alg = NULL;
275     const struct ssh_signkey *ssh2algf = NULL;
276     int ssh2bloblen;
277     char *passphrase = NULL;
278     int load_encrypted;
279     progfn_t progressfn = is_interactive() ? progress_update : no_progress;
280
281     /* ------------------------------------------------------------------
282      * Parse the command line to figure out what we've been asked to do.
283      */
284
285     /*
286      * If run with no arguments at all, print the usage message and
287      * return success.
288      */
289     if (argc <= 1) {
290         usage(TRUE);
291         return 0;
292     }
293
294     /*
295      * Parse command line arguments.
296      */
297     while (--argc) {
298         char *p = *++argv;
299         if (*p == '-') {
300             /*
301              * An option.
302              */
303             while (p && *++p) {
304                 char c = *p;
305                 switch (c) {
306                   case '-':
307                     /*
308                      * Long option.
309                      */
310                     {
311                         char *opt, *val;
312                         opt = p++;     /* opt will have _one_ leading - */
313                         while (*p && *p != '=')
314                             p++;               /* find end of option */
315                         if (*p == '=') {
316                             *p++ = '\0';
317                             val = p;
318                         } else
319                             val = NULL;
320                         if (!strcmp(opt, "-help")) {
321                             help();
322                             nogo = TRUE;
323                         } else if (!strcmp(opt, "-version")) {
324                             showversion();
325                             nogo = TRUE;
326                         } else if (!strcmp(opt, "-pgpfp")) {
327                             /* support "-pgpfp" for consistency with others */
328                             pgp_fingerprints();
329                             nogo = TRUE;
330                         }
331                         /*
332                          * A sample option requiring an argument:
333                          * 
334                          * else if (!strcmp(opt, "-output")) {
335                          *     if (!val)
336                          *         errs = TRUE, error(err_optnoarg, opt);
337                          *     else
338                          *         ofile = val;
339                          * }
340                          */
341                         else {
342                             errs = TRUE;
343                             fprintf(stderr,
344                                     "puttygen: no such option `-%s'\n", opt);
345                         }
346                     }
347                     p = NULL;
348                     break;
349                   case 'h':
350                   case 'V':
351                   case 'P':
352                   case 'l':
353                   case 'L':
354                   case 'p':
355                   case 'q':
356                     /*
357                      * Option requiring no parameter.
358                      */
359                     switch (c) {
360                       case 'h':
361                         help();
362                         nogo = TRUE;
363                         break;
364                       case 'V':
365                         showversion();
366                         nogo = TRUE;
367                         break;
368                       case 'P':
369                         change_passphrase = TRUE;
370                         break;
371                       case 'l':
372                         outtype = FP;
373                         break;
374                       case 'L':
375                         outtype = PUBLICO;
376                         break;
377                       case 'p':
378                         outtype = PUBLIC;
379                         break;
380                       case 'q':
381                         progressfn = no_progress;
382                         break;
383                     }
384                     break;
385                   case 't':
386                   case 'b':
387                   case 'C':
388                   case 'O':
389                   case 'o':
390                     /*
391                      * Option requiring parameter.
392                      */
393                     p++;
394                     if (!*p && argc > 1)
395                         --argc, p = *++argv;
396                     else if (!*p) {
397                         fprintf(stderr, "puttygen: option `-%c' expects a"
398                                 " parameter\n", c);
399                         errs = TRUE;
400                     }
401                     /*
402                      * Now c is the option and p is the parameter.
403                      */
404                     switch (c) {
405                       case 't':
406                         if (!strcmp(p, "rsa") || !strcmp(p, "rsa2"))
407                             keytype = RSA2, sshver = 2;
408                         else if (!strcmp(p, "rsa1"))
409                             keytype = RSA1, sshver = 1;
410                         else if (!strcmp(p, "dsa") || !strcmp(p, "dss"))
411                             keytype = DSA, sshver = 2;
412                         else {
413                             fprintf(stderr,
414                                     "puttygen: unknown key type `%s'\n", p);
415                             errs = TRUE;
416                         }
417                         break;
418                       case 'b':
419                         bits = atoi(p);
420                         break;
421                       case 'C':
422                         comment = p;
423                         break;
424                       case 'O':
425                         if (!strcmp(p, "public"))
426                             outtype = PUBLIC;
427                         else if (!strcmp(p, "public-openssh"))
428                             outtype = PUBLICO;
429                         else if (!strcmp(p, "private"))
430                             outtype = PRIVATE;
431                         else if (!strcmp(p, "fingerprint"))
432                             outtype = FP;
433                         else if (!strcmp(p, "private-openssh"))
434                             outtype = OPENSSH, sshver = 2;
435                         else if (!strcmp(p, "private-sshcom"))
436                             outtype = SSHCOM, sshver = 2;
437                         else {
438                             fprintf(stderr,
439                                     "puttygen: unknown output type `%s'\n", p);
440                             errs = TRUE;
441                         }
442                         break;
443                       case 'o':
444                         outfile = p;
445                         break;
446                     }
447                     p = NULL;          /* prevent continued processing */
448                     break;
449                   default:
450                     /*
451                      * Unrecognised option.
452                      */
453                     errs = TRUE;
454                     fprintf(stderr, "puttygen: no such option `-%c'\n", c);
455                     break;
456                 }
457             }
458         } else {
459             /*
460              * A non-option argument.
461              */
462             if (!infile)
463                 infile = p;
464             else {
465                 errs = TRUE;
466                 fprintf(stderr, "puttygen: cannot handle more than one"
467                         " input file\n");
468             }
469         }
470     }
471
472     if (errs)
473         return 1;
474
475     if (nogo)
476         return 0;
477
478     /*
479      * If run with at least one argument _but_ not the required
480      * ones, print the usage message and return failure.
481      */
482     if (!infile && keytype == NOKEYGEN) {
483         usage(TRUE);
484         return 1;
485     }
486
487     /* ------------------------------------------------------------------
488      * Figure out further details of exactly what we're going to do.
489      */
490
491     /*
492      * Bomb out if we've been asked to both load and generate a
493      * key.
494      */
495     if (keytype != NOKEYGEN && infile) {
496         fprintf(stderr, "puttygen: cannot both load and generate a key\n");
497         return 1;
498     }
499
500     /* 
501      * We must save the private part when generating a new key.
502      */
503     if (keytype != NOKEYGEN &&
504         (outtype != PRIVATE && outtype != OPENSSH && outtype != SSHCOM)) {
505         fprintf(stderr, "puttygen: this would generate a new key but "
506                 "discard the private part\n");
507         return 1;
508     }
509
510     /*
511      * Analyse the type of the input file, in case this affects our
512      * course of action.
513      */
514     if (infile) {
515         infilename = filename_from_str(infile);
516
517         intype = key_type(&infilename);
518
519         switch (intype) {
520             /*
521              * It would be nice here to be able to load _public_
522              * key files, in any of a number of forms, and (a)
523              * convert them to other public key types, (b) print
524              * out their fingerprints. Or, I suppose, for real
525              * orthogonality, (c) change their comment!
526              * 
527              * In fact this opens some interesting possibilities.
528              * Suppose ssh2_userkey_loadpub() were able to load
529              * public key files as well as extracting the public
530              * key from private ones. And suppose I did the thing
531              * I've been wanting to do, where specifying a
532              * particular private key file for authentication
533              * causes any _other_ key in the agent to be discarded.
534              * Then, if you had an agent forwarded to the machine
535              * you were running Unix PuTTY or Plink on, and you
536              * needed to specify which of the keys in the agent it
537              * should use, you could do that by supplying a
538              * _public_ key file, thus not needing to trust even
539              * your encrypted private key file to the network. Ooh!
540              */
541
542           case SSH_KEYTYPE_UNOPENABLE:
543           case SSH_KEYTYPE_UNKNOWN:
544             fprintf(stderr, "puttygen: unable to load file `%s': %s\n",
545                     infile, key_type_to_str(intype));
546             return 1;
547
548           case SSH_KEYTYPE_SSH1:
549             if (sshver == 2) {
550                 fprintf(stderr, "puttygen: conversion from SSH-1 to SSH-2 keys"
551                         " not supported\n");
552                 return 1;
553             }
554             sshver = 1;
555             break;
556
557           case SSH_KEYTYPE_SSH2:
558           case SSH_KEYTYPE_OPENSSH:
559           case SSH_KEYTYPE_SSHCOM:
560             if (sshver == 1) {
561                 fprintf(stderr, "puttygen: conversion from SSH-2 to SSH-1 keys"
562                         " not supported\n");
563                 return 1;
564             }
565             sshver = 2;
566             break;
567         }
568     }
569
570     /*
571      * Determine the default output file, if none is provided.
572      * 
573      * This will usually be equal to stdout, except that if the
574      * input and output file formats are the same then the default
575      * output is to overwrite the input.
576      * 
577      * Also in this code, we bomb out if the input and output file
578      * formats are the same and no other action is performed.
579      */
580     if ((intype == SSH_KEYTYPE_SSH1 && outtype == PRIVATE) ||
581         (intype == SSH_KEYTYPE_SSH2 && outtype == PRIVATE) ||
582         (intype == SSH_KEYTYPE_OPENSSH && outtype == OPENSSH) ||
583         (intype == SSH_KEYTYPE_SSHCOM && outtype == SSHCOM)) {
584         if (!outfile) {
585             outfile = infile;
586             outfiletmp = dupcat(outfile, ".tmp", NULL);
587         }
588
589         if (!change_passphrase && !comment) {
590             fprintf(stderr, "puttygen: this command would perform no useful"
591                     " action\n");
592             return 1;
593         }
594     } else {
595         if (!outfile) {
596             /*
597              * Bomb out rather than automatically choosing to write
598              * a private key file to stdout.
599              */
600             if (outtype==PRIVATE || outtype==OPENSSH || outtype==SSHCOM) {
601                 fprintf(stderr, "puttygen: need to specify an output file\n");
602                 return 1;
603             }
604         }
605     }
606
607     /*
608      * Figure out whether we need to load the encrypted part of the
609      * key. This will be the case if either (a) we need to write
610      * out a private key format, or (b) the entire input key file
611      * is encrypted.
612      */
613     if (outtype == PRIVATE || outtype == OPENSSH || outtype == SSHCOM ||
614         intype == SSH_KEYTYPE_OPENSSH || intype == SSH_KEYTYPE_SSHCOM)
615         load_encrypted = TRUE;
616     else
617         load_encrypted = FALSE;
618
619     /* ------------------------------------------------------------------
620      * Now we're ready to actually do some stuff.
621      */
622
623     /*
624      * Either load or generate a key.
625      */
626     if (keytype != NOKEYGEN) {
627         char *entropy;
628         char default_comment[80];
629         struct tm tm;
630         struct progress prog;
631
632         prog.phase = -1;
633         prog.current = -1;
634
635         tm = ltime();
636         if (keytype == DSA)
637             strftime(default_comment, 30, "dsa-key-%Y%m%d", &tm);
638         else
639             strftime(default_comment, 30, "rsa-key-%Y%m%d", &tm);
640
641         random_ref();
642         entropy = get_random_data(bits / 8);
643         random_add_heavynoise(entropy, bits / 8);
644         memset(entropy, 0, bits/8);
645         sfree(entropy);
646
647         if (keytype == DSA) {
648             struct dss_key *dsskey = snew(struct dss_key);
649             dsa_generate(dsskey, bits, progressfn, &prog);
650             ssh2key = snew(struct ssh2_userkey);
651             ssh2key->data = dsskey;
652             ssh2key->alg = &ssh_dss;
653             ssh1key = NULL;
654         } else {
655             struct RSAKey *rsakey = snew(struct RSAKey);
656             rsa_generate(rsakey, bits, progressfn, &prog);
657             rsakey->comment = NULL;
658             if (keytype == RSA1) {
659                 ssh1key = rsakey;
660             } else {
661                 ssh2key = snew(struct ssh2_userkey);
662                 ssh2key->data = rsakey;
663                 ssh2key->alg = &ssh_rsa;
664             }
665         }
666         progressfn(&prog, PROGFN_PROGRESS, INT_MAX, -1);
667
668         if (ssh2key)
669             ssh2key->comment = dupstr(default_comment);
670         if (ssh1key)
671             ssh1key->comment = dupstr(default_comment);
672
673     } else {
674         const char *error = NULL;
675         int encrypted;
676
677         assert(infile != NULL);
678
679         /*
680          * Find out whether the input key is encrypted.
681          */
682         if (intype == SSH_KEYTYPE_SSH1)
683             encrypted = rsakey_encrypted(&infilename, &origcomment);
684         else if (intype == SSH_KEYTYPE_SSH2)
685             encrypted = ssh2_userkey_encrypted(&infilename, &origcomment);
686         else
687             encrypted = import_encrypted(&infilename, intype, &origcomment);
688
689         /*
690          * If so, ask for a passphrase.
691          */
692         if (encrypted && load_encrypted) {
693             prompts_t *p = new_prompts(NULL);
694             int ret;
695             p->to_server = FALSE;
696             p->name = dupstr("SSH key passphrase");
697             add_prompt(p, dupstr("Enter passphrase to load key: "), FALSE, 512);
698             ret = console_get_userpass_input(p, NULL, 0);
699             assert(ret >= 0);
700             if (!ret) {
701                 free_prompts(p);
702                 perror("puttygen: unable to read passphrase");
703                 return 1;
704             } else {
705                 passphrase = dupstr(p->prompts[0]->result);
706                 free_prompts(p);
707             }
708         } else {
709             passphrase = NULL;
710         }
711
712         switch (intype) {
713             int ret;
714
715           case SSH_KEYTYPE_SSH1:
716             ssh1key = snew(struct RSAKey);
717             if (!load_encrypted) {
718                 void *vblob;
719                 unsigned char *blob;
720                 int n, l, bloblen;
721
722                 ret = rsakey_pubblob(&infilename, &vblob, &bloblen,
723                                      &origcomment, &error);
724                 blob = (unsigned char *)vblob;
725
726                 n = 4;                 /* skip modulus bits */
727                 
728                 l = ssh1_read_bignum(blob + n, bloblen - n,
729                                      &ssh1key->exponent);
730                 if (l < 0) {
731                     error = "SSH-1 public key blob was too short";
732                 } else {
733                     n += l;
734                     l = ssh1_read_bignum(blob + n, bloblen - n,
735                                          &ssh1key->modulus);
736                     if (l < 0) {
737                         error = "SSH-1 public key blob was too short";
738                     } else
739                         n += l;
740                 }
741                 ssh1key->comment = dupstr(origcomment);
742                 ssh1key->private_exponent = NULL;
743             } else {
744                 ret = loadrsakey(&infilename, ssh1key, passphrase, &error);
745             }
746             if (ret > 0)
747                 error = NULL;
748             else if (!error)
749                 error = "unknown error";
750             break;
751
752           case SSH_KEYTYPE_SSH2:
753             if (!load_encrypted) {
754                 ssh2blob = ssh2_userkey_loadpub(&infilename, &ssh2alg,
755                                                 &ssh2bloblen, NULL, &error);
756                 ssh2algf = find_pubkey_alg(ssh2alg);
757                 if (ssh2algf)
758                     bits = ssh2algf->pubkey_bits(ssh2blob, ssh2bloblen);
759                 else
760                     bits = -1;
761             } else {
762                 ssh2key = ssh2_load_userkey(&infilename, passphrase, &error);
763             }
764             if ((ssh2key && ssh2key != SSH2_WRONG_PASSPHRASE) || ssh2blob)
765                 error = NULL;
766             else if (!error) {
767                 if (ssh2key == SSH2_WRONG_PASSPHRASE)
768                     error = "wrong passphrase";
769                 else
770                     error = "unknown error";
771             }
772             break;
773
774           case SSH_KEYTYPE_OPENSSH:
775           case SSH_KEYTYPE_SSHCOM:
776             ssh2key = import_ssh2(&infilename, intype, passphrase, &error);
777             if (ssh2key) {
778                 if (ssh2key != SSH2_WRONG_PASSPHRASE)
779                     error = NULL;
780                 else
781                     error = "wrong passphrase";
782             } else if (!error)
783                 error = "unknown error";
784             break;
785
786           default:
787             assert(0);
788         }
789
790         if (error) {
791             fprintf(stderr, "puttygen: error loading `%s': %s\n",
792                     infile, error);
793             return 1;
794         }
795     }
796
797     /*
798      * Change the comment if asked to.
799      */
800     if (comment) {
801         if (sshver == 1) {
802             assert(ssh1key);
803             sfree(ssh1key->comment);
804             ssh1key->comment = dupstr(comment);
805         } else {
806             assert(ssh2key);
807             sfree(ssh2key->comment);
808             ssh2key->comment = dupstr(comment);
809         }
810     }
811
812     /*
813      * Prompt for a new passphrase if we have been asked to, or if
814      * we have just generated a key.
815      */
816     if (change_passphrase || keytype != NOKEYGEN) {
817         prompts_t *p = new_prompts(NULL);
818         int ret;
819
820         p->to_server = FALSE;
821         p->name = dupstr("New SSH key passphrase");
822         add_prompt(p, dupstr("Enter passphrase to save key: "), FALSE, 512);
823         add_prompt(p, dupstr("Re-enter passphrase to verify: "), FALSE, 512);
824         ret = console_get_userpass_input(p, NULL, 0);
825         assert(ret >= 0);
826         if (!ret) {
827             free_prompts(p);
828             perror("puttygen: unable to read new passphrase");
829             return 1;
830         } else {
831             if (strcmp(p->prompts[0]->result, p->prompts[1]->result)) {
832                 free_prompts(p);
833                 fprintf(stderr, "puttygen: passphrases do not match\n");
834                 return 1;
835             }
836             if (passphrase) {
837                 memset(passphrase, 0, strlen(passphrase));
838                 sfree(passphrase);
839             }
840             passphrase = dupstr(p->prompts[0]->result);
841             free_prompts(p);
842             if (!*passphrase) {
843                 sfree(passphrase);
844                 passphrase = NULL;
845             }
846         }
847     }
848
849     /*
850      * Write output.
851      * 
852      * (In the case where outfile and outfiletmp are both NULL,
853      * there is no semantic reason to initialise outfilename at
854      * all; but we have to write _something_ to it or some compiler
855      * will probably complain that it might be used uninitialised.)
856      */
857     if (outfiletmp)
858         outfilename = filename_from_str(outfiletmp);
859     else
860         outfilename = filename_from_str(outfile ? outfile : "");
861
862     switch (outtype) {
863         int ret;
864
865       case PRIVATE:
866         if (sshver == 1) {
867             assert(ssh1key);
868             ret = saversakey(&outfilename, ssh1key, passphrase);
869             if (!ret) {
870                 fprintf(stderr, "puttygen: unable to save SSH-1 private key\n");
871                 return 1;
872             }
873         } else {
874             assert(ssh2key);
875             ret = ssh2_save_userkey(&outfilename, ssh2key, passphrase);
876             if (!ret) {
877                 fprintf(stderr, "puttygen: unable to save SSH-2 private key\n");
878                 return 1;
879             }
880         }
881         if (outfiletmp) {
882             if (!move(outfiletmp, outfile))
883                 return 1;              /* rename failed */
884         }
885         break;
886
887       case PUBLIC:
888       case PUBLICO:
889         if (sshver == 1) {
890             FILE *fp;
891             char *dec1, *dec2;
892
893             assert(ssh1key);
894
895             if (outfile)
896                 fp = f_open(outfilename, "w", FALSE);
897             else
898                 fp = stdout;
899             dec1 = bignum_decimal(ssh1key->exponent);
900             dec2 = bignum_decimal(ssh1key->modulus);
901             fprintf(fp, "%d %s %s %s\n", bignum_bitcount(ssh1key->modulus),
902                     dec1, dec2, ssh1key->comment);
903             sfree(dec1);
904             sfree(dec2);
905             if (outfile)
906                 fclose(fp);
907         } else if (outtype == PUBLIC) {
908             if (!ssh2blob) {
909                 assert(ssh2key);
910                 ssh2blob = ssh2key->alg->public_blob(ssh2key->data,
911                                                      &ssh2bloblen);
912             }
913             save_ssh2_pubkey(outfile, ssh2key ? ssh2key->comment : origcomment,
914                              ssh2blob, ssh2bloblen);
915         } else if (outtype == PUBLICO) {
916             char *buffer, *p;
917             int i;
918             FILE *fp;
919
920             if (!ssh2blob) {
921                 assert(ssh2key);
922                 ssh2blob = ssh2key->alg->public_blob(ssh2key->data,
923                                                      &ssh2bloblen);
924             }
925             if (!ssh2alg) {
926                 assert(ssh2key);
927                 ssh2alg = ssh2key->alg->name;
928             }
929             if (ssh2key)
930                 comment = ssh2key->comment;
931             else
932                 comment = origcomment;
933
934             buffer = snewn(strlen(ssh2alg) +
935                            4 * ((ssh2bloblen+2) / 3) +
936                            strlen(comment) + 3, char);
937             strcpy(buffer, ssh2alg);
938             p = buffer + strlen(buffer);
939             *p++ = ' ';
940             i = 0;
941             while (i < ssh2bloblen) {
942                 int n = (ssh2bloblen - i < 3 ? ssh2bloblen - i : 3);
943                 base64_encode_atom(ssh2blob + i, n, p);
944                 i += n;
945                 p += 4;
946             }
947             if (*comment) {
948                 *p++ = ' ';
949                 strcpy(p, comment);
950             } else
951                 *p++ = '\0';
952
953             if (outfile)
954                 fp = f_open(outfilename, "w", FALSE);
955             else
956                 fp = stdout;
957             fprintf(fp, "%s\n", buffer);
958             if (outfile)
959                 fclose(fp);
960
961             sfree(buffer);
962         }
963         break;
964
965       case FP:
966         {
967             FILE *fp;
968             char *fingerprint;
969
970             if (sshver == 1) {
971                 assert(ssh1key);
972                 fingerprint = snewn(128, char);
973                 rsa_fingerprint(fingerprint, 128, ssh1key);
974             } else {
975                 if (ssh2key) {
976                     fingerprint = ssh2key->alg->fingerprint(ssh2key->data);
977                 } else {
978                     assert(ssh2blob);
979                     fingerprint = blobfp(ssh2alg, bits, ssh2blob, ssh2bloblen);
980                 }
981             }
982
983             if (outfile)
984                 fp = f_open(outfilename, "w", FALSE);
985             else
986                 fp = stdout;
987             fprintf(fp, "%s\n", fingerprint);
988             if (outfile)
989                 fclose(fp);
990
991             sfree(fingerprint);
992         }
993         break;
994         
995       case OPENSSH:
996       case SSHCOM:
997         assert(sshver == 2);
998         assert(ssh2key);
999         ret = export_ssh2(&outfilename, outtype, ssh2key, passphrase);
1000         if (!ret) {
1001             fprintf(stderr, "puttygen: unable to export key\n");
1002             return 1;
1003         }
1004         if (outfiletmp) {
1005             if (!move(outfiletmp, outfile))
1006                 return 1;              /* rename failed */
1007         }
1008         break;
1009     }
1010
1011     if (passphrase) {
1012         memset(passphrase, 0, strlen(passphrase));
1013         sfree(passphrase);
1014     }
1015
1016     if (ssh1key)
1017         freersakey(ssh1key);
1018     if (ssh2key) {
1019         ssh2key->alg->freekey(ssh2key->data);
1020         sfree(ssh2key);
1021     }
1022
1023     return 0;
1024 }
1025
1026 #ifdef TEST_CMDGEN
1027
1028 #undef main
1029
1030 #include <stdarg.h>
1031
1032 int passes, fails;
1033
1034 void setup_passphrases(char *first, ...)
1035 {
1036     va_list ap;
1037     char *next;
1038
1039     nprompts = 0;
1040     if (first) {
1041         prompts[nprompts++] = first;
1042         va_start(ap, first);
1043         while ((next = va_arg(ap, char *)) != NULL) {
1044             assert(nprompts < lenof(prompts));
1045             prompts[nprompts++] = next;
1046         }
1047         va_end(ap);
1048     }
1049 }
1050
1051 void test(int retval, ...)
1052 {
1053     va_list ap;
1054     int i, argc, ret;
1055     char **argv;
1056
1057     argc = 0;
1058     va_start(ap, retval);
1059     while (va_arg(ap, char *) != NULL)
1060         argc++;
1061     va_end(ap);
1062
1063     argv = snewn(argc+1, char *);
1064     va_start(ap, retval);
1065     for (i = 0; i <= argc; i++)
1066         argv[i] = va_arg(ap, char *);
1067     va_end(ap);
1068
1069     promptsgot = 0;
1070     ret = cmdgen_main(argc, argv);
1071
1072     if (ret != retval) {
1073         printf("FAILED retval (exp %d got %d):", retval, ret);
1074         for (i = 0; i < argc; i++)
1075             printf(" %s", argv[i]);
1076         printf("\n");
1077         fails++;
1078     } else if (promptsgot != nprompts) {
1079         printf("FAILED nprompts (exp %d got %d):", nprompts, promptsgot);
1080         for (i = 0; i < argc; i++)
1081             printf(" %s", argv[i]);
1082         printf("\n");
1083         fails++;
1084     } else {
1085         passes++;
1086     }
1087 }
1088
1089 void filecmp(char *file1, char *file2, char *fmt, ...)
1090 {
1091     /*
1092      * Ideally I should do file comparison myself, to maximise the
1093      * portability of this test suite once this application begins
1094      * running on non-Unix platforms. For the moment, though,
1095      * calling Unix diff is perfectly adequate.
1096      */
1097     char *buf;
1098     int ret;
1099
1100     buf = dupprintf("diff -q '%s' '%s'", file1, file2);
1101     ret = system(buf);
1102     sfree(buf);
1103
1104     if (ret) {
1105         va_list ap;
1106
1107         printf("FAILED diff (ret=%d): ", ret);
1108
1109         va_start(ap, fmt);
1110         vprintf(fmt, ap);
1111         va_end(ap);
1112
1113         printf("\n");
1114
1115         fails++;
1116     } else
1117         passes++;
1118 }
1119
1120 char *cleanup_fp(char *s)
1121 {
1122     char *p;
1123
1124     if (!strncmp(s, "ssh-", 4)) {
1125         s += strcspn(s, " \n\t");
1126         s += strspn(s, " \n\t");
1127     }
1128
1129     p = s;
1130     s += strcspn(s, " \n\t");
1131     s += strspn(s, " \n\t");
1132     s += strcspn(s, " \n\t");
1133
1134     return dupprintf("%.*s", s - p, p);
1135 }
1136
1137 char *get_fp(char *filename)
1138 {
1139     FILE *fp;
1140     char buf[256], *ret;
1141
1142     fp = fopen(filename, "r");
1143     if (!fp)
1144         return NULL;
1145     ret = fgets(buf, sizeof(buf), fp);
1146     fclose(fp);
1147     if (!ret)
1148         return NULL;
1149     return cleanup_fp(buf);
1150 }
1151
1152 void check_fp(char *filename, char *fp, char *fmt, ...)
1153 {
1154     char *newfp;
1155
1156     if (!fp)
1157         return;
1158
1159     newfp = get_fp(filename);
1160
1161     if (!strcmp(fp, newfp)) {
1162         passes++;
1163     } else {
1164         va_list ap;
1165
1166         printf("FAILED check_fp ['%s' != '%s']: ", newfp, fp);
1167
1168         va_start(ap, fmt);
1169         vprintf(fmt, ap);
1170         va_end(ap);
1171
1172         printf("\n");
1173
1174         fails++;
1175     }
1176
1177     sfree(newfp);
1178 }
1179
1180 int main(int argc, char **argv)
1181 {
1182     int i;
1183     static char *const keytypes[] = { "rsa1", "dsa", "rsa" };
1184
1185     /*
1186      * Even when this thing is compiled for automatic test mode,
1187      * it's helpful to be able to invoke it with command-line
1188      * options for _manual_ tests.
1189      */
1190     if (argc > 1)
1191         return cmdgen_main(argc, argv);
1192
1193     passes = fails = 0;
1194
1195     for (i = 0; i < lenof(keytypes); i++) {
1196         char filename[128], osfilename[128], scfilename[128];
1197         char pubfilename[128], tmpfilename1[128], tmpfilename2[128];
1198         char *fp;
1199
1200         sprintf(filename, "test-%s.ppk", keytypes[i]);
1201         sprintf(pubfilename, "test-%s.pub", keytypes[i]);
1202         sprintf(osfilename, "test-%s.os", keytypes[i]);
1203         sprintf(scfilename, "test-%s.sc", keytypes[i]);
1204         sprintf(tmpfilename1, "test-%s.tmp1", keytypes[i]);
1205         sprintf(tmpfilename2, "test-%s.tmp2", keytypes[i]);
1206
1207         /*
1208          * Create an encrypted key.
1209          */
1210         setup_passphrases("sponge", "sponge", NULL);
1211         test(0, "puttygen", "-t", keytypes[i], "-o", filename, NULL);
1212
1213         /*
1214          * List the public key in OpenSSH format.
1215          */
1216         setup_passphrases(NULL);
1217         test(0, "puttygen", "-L", filename, "-o", pubfilename, NULL);
1218         {
1219             char cmdbuf[256];
1220             fp = NULL;
1221             sprintf(cmdbuf, "ssh-keygen -l -f '%s' > '%s'",
1222                     pubfilename, tmpfilename1);
1223             if (system(cmdbuf) ||
1224                 (fp = get_fp(tmpfilename1)) == NULL) {
1225                 printf("UNABLE to test fingerprint matching against OpenSSH");
1226             }
1227         }
1228
1229         /*
1230          * List the public key in IETF/ssh.com format.
1231          */
1232         setup_passphrases(NULL);
1233         test(0, "puttygen", "-p", filename, NULL);
1234
1235         /*
1236          * List the fingerprint of the key.
1237          */
1238         setup_passphrases(NULL);
1239         test(0, "puttygen", "-l", filename, "-o", tmpfilename1, NULL);
1240         if (!fp) {
1241             /*
1242              * If we can't test fingerprints against OpenSSH, we
1243              * can at the very least test equality of all the
1244              * fingerprints we generate of this key throughout
1245              * testing.
1246              */
1247             fp = get_fp(tmpfilename1);
1248         } else {
1249             check_fp(tmpfilename1, fp, "%s initial fp", keytypes[i]);
1250         }
1251
1252         /*
1253          * Change the comment of the key; this _does_ require a
1254          * passphrase owing to the tamperproofing.
1255          * 
1256          * NOTE: In SSH-1, this only requires a passphrase because
1257          * of inadequacies of the loading and saving mechanisms. In
1258          * _principle_, it should be perfectly possible to modify
1259          * the comment on an SSH-1 key without requiring a
1260          * passphrase; the only reason I can't do it is because my
1261          * loading and saving mechanisms don't include a method of
1262          * loading all the key data without also trying to decrypt
1263          * the private section.
1264          * 
1265          * I don't consider this to be a problem worth solving,
1266          * because (a) to fix it would probably end up bloating
1267          * PuTTY proper, and (b) SSH-1 is on the way out anyway so
1268          * it shouldn't be highly significant. If it seriously
1269          * bothers anyone then perhaps I _might_ be persuadable.
1270          */
1271         setup_passphrases("sponge", NULL);
1272         test(0, "puttygen", "-C", "new-comment", filename, NULL);
1273
1274         /*
1275          * Change the passphrase to nothing.
1276          */
1277         setup_passphrases("sponge", "", "", NULL);
1278         test(0, "puttygen", "-P", filename, NULL);
1279
1280         /*
1281          * Change the comment of the key again; this time we expect no
1282          * passphrase to be required.
1283          */
1284         setup_passphrases(NULL);
1285         test(0, "puttygen", "-C", "new-comment-2", filename, NULL);
1286
1287         /*
1288          * Export the private key into OpenSSH format; no passphrase
1289          * should be required since the key is currently unencrypted.
1290          * For RSA1 keys, this should give an error.
1291          */
1292         setup_passphrases(NULL);
1293         test((i==0), "puttygen", "-O", "private-openssh", "-o", osfilename,
1294              filename, NULL);
1295
1296         if (i) {
1297             /*
1298              * List the fingerprint of the OpenSSH-formatted key.
1299              */
1300             setup_passphrases(NULL);
1301             test(0, "puttygen", "-l", osfilename, "-o", tmpfilename1, NULL);
1302             check_fp(tmpfilename1, fp, "%s openssh clear fp", keytypes[i]);
1303
1304             /*
1305              * List the public half of the OpenSSH-formatted key in
1306              * OpenSSH format.
1307              */
1308             setup_passphrases(NULL);
1309             test(0, "puttygen", "-L", osfilename, NULL);
1310
1311             /*
1312              * List the public half of the OpenSSH-formatted key in
1313              * IETF/ssh.com format.
1314              */
1315             setup_passphrases(NULL);
1316             test(0, "puttygen", "-p", osfilename, NULL);
1317         }
1318
1319         /*
1320          * Export the private key into ssh.com format; no passphrase
1321          * should be required since the key is currently unencrypted.
1322          * For RSA1 keys, this should give an error.
1323          */
1324         setup_passphrases(NULL);
1325         test((i==0), "puttygen", "-O", "private-sshcom", "-o", scfilename,
1326              filename, NULL);
1327
1328         if (i) {
1329             /*
1330              * List the fingerprint of the ssh.com-formatted key.
1331              */
1332             setup_passphrases(NULL);
1333             test(0, "puttygen", "-l", scfilename, "-o", tmpfilename1, NULL);
1334             check_fp(tmpfilename1, fp, "%s ssh.com clear fp", keytypes[i]);
1335
1336             /*
1337              * List the public half of the ssh.com-formatted key in
1338              * OpenSSH format.
1339              */
1340             setup_passphrases(NULL);
1341             test(0, "puttygen", "-L", scfilename, NULL);
1342
1343             /*
1344              * List the public half of the ssh.com-formatted key in
1345              * IETF/ssh.com format.
1346              */
1347             setup_passphrases(NULL);
1348             test(0, "puttygen", "-p", scfilename, NULL);
1349         }
1350
1351         if (i) {
1352             /*
1353              * Convert from OpenSSH into ssh.com.
1354              */
1355             setup_passphrases(NULL);
1356             test(0, "puttygen", osfilename, "-o", tmpfilename1,
1357                  "-O", "private-sshcom", NULL);
1358
1359             /*
1360              * Convert from ssh.com back into a PuTTY key,
1361              * supplying the same comment as we had before we
1362              * started to ensure the comparison works.
1363              */
1364             setup_passphrases(NULL);
1365             test(0, "puttygen", tmpfilename1, "-C", "new-comment-2",
1366                  "-o", tmpfilename2, NULL);
1367
1368             /*
1369              * See if the PuTTY key thus generated is the same as
1370              * the original.
1371              */
1372             filecmp(filename, tmpfilename2,
1373                     "p->o->s->p clear %s", keytypes[i]);
1374
1375             /*
1376              * Convert from ssh.com to OpenSSH.
1377              */
1378             setup_passphrases(NULL);
1379             test(0, "puttygen", scfilename, "-o", tmpfilename1,
1380                  "-O", "private-openssh", NULL);
1381
1382             /*
1383              * Convert from OpenSSH back into a PuTTY key,
1384              * supplying the same comment as we had before we
1385              * started to ensure the comparison works.
1386              */
1387             setup_passphrases(NULL);
1388             test(0, "puttygen", tmpfilename1, "-C", "new-comment-2",
1389                  "-o", tmpfilename2, NULL);
1390
1391             /*
1392              * See if the PuTTY key thus generated is the same as
1393              * the original.
1394              */
1395             filecmp(filename, tmpfilename2,
1396                     "p->s->o->p clear %s", keytypes[i]);
1397
1398             /*
1399              * Finally, do a round-trip conversion between PuTTY
1400              * and ssh.com without involving OpenSSH, to test that
1401              * the key comment is preserved in that case.
1402              */
1403             setup_passphrases(NULL);
1404             test(0, "puttygen", "-O", "private-sshcom", "-o", tmpfilename1,
1405                  filename, NULL);
1406             setup_passphrases(NULL);
1407             test(0, "puttygen", tmpfilename1, "-o", tmpfilename2, NULL);
1408             filecmp(filename, tmpfilename2,
1409                     "p->s->p clear %s", keytypes[i]);
1410         }
1411
1412         /*
1413          * Check that mismatched passphrases cause an error.
1414          */
1415         setup_passphrases("sponge2", "sponge3", NULL);
1416         test(1, "puttygen", "-P", filename, NULL);
1417
1418         /*
1419          * Put a passphrase back on.
1420          */
1421         setup_passphrases("sponge2", "sponge2", NULL);
1422         test(0, "puttygen", "-P", filename, NULL);
1423
1424         /*
1425          * Export the private key into OpenSSH format, this time
1426          * while encrypted. For RSA1 keys, this should give an
1427          * error.
1428          */
1429         if (i == 0)
1430             setup_passphrases(NULL);   /* error, hence no passphrase read */
1431         else
1432             setup_passphrases("sponge2", NULL);
1433         test((i==0), "puttygen", "-O", "private-openssh", "-o", osfilename,
1434              filename, NULL);
1435
1436         if (i) {
1437             /*
1438              * List the fingerprint of the OpenSSH-formatted key.
1439              */
1440             setup_passphrases("sponge2", NULL);
1441             test(0, "puttygen", "-l", osfilename, "-o", tmpfilename1, NULL);
1442             check_fp(tmpfilename1, fp, "%s openssh encrypted fp", keytypes[i]);
1443
1444             /*
1445              * List the public half of the OpenSSH-formatted key in
1446              * OpenSSH format.
1447              */
1448             setup_passphrases("sponge2", NULL);
1449             test(0, "puttygen", "-L", osfilename, NULL);
1450
1451             /*
1452              * List the public half of the OpenSSH-formatted key in
1453              * IETF/ssh.com format.
1454              */
1455             setup_passphrases("sponge2", NULL);
1456             test(0, "puttygen", "-p", osfilename, NULL);
1457         }
1458
1459         /*
1460          * Export the private key into ssh.com format, this time
1461          * while encrypted. For RSA1 keys, this should give an
1462          * error.
1463          */
1464         if (i == 0)
1465             setup_passphrases(NULL);   /* error, hence no passphrase read */
1466         else
1467             setup_passphrases("sponge2", NULL);
1468         test((i==0), "puttygen", "-O", "private-sshcom", "-o", scfilename,
1469              filename, NULL);
1470
1471         if (i) {
1472             /*
1473              * List the fingerprint of the ssh.com-formatted key.
1474              */
1475             setup_passphrases("sponge2", NULL);
1476             test(0, "puttygen", "-l", scfilename, "-o", tmpfilename1, NULL);
1477             check_fp(tmpfilename1, fp, "%s ssh.com encrypted fp", keytypes[i]);
1478
1479             /*
1480              * List the public half of the ssh.com-formatted key in
1481              * OpenSSH format.
1482              */
1483             setup_passphrases("sponge2", NULL);
1484             test(0, "puttygen", "-L", scfilename, NULL);
1485
1486             /*
1487              * List the public half of the ssh.com-formatted key in
1488              * IETF/ssh.com format.
1489              */
1490             setup_passphrases("sponge2", NULL);
1491             test(0, "puttygen", "-p", scfilename, NULL);
1492         }
1493
1494         if (i) {
1495             /*
1496              * Convert from OpenSSH into ssh.com.
1497              */
1498             setup_passphrases("sponge2", NULL);
1499             test(0, "puttygen", osfilename, "-o", tmpfilename1,
1500                  "-O", "private-sshcom", NULL);
1501
1502             /*
1503              * Convert from ssh.com back into a PuTTY key,
1504              * supplying the same comment as we had before we
1505              * started to ensure the comparison works.
1506              */
1507             setup_passphrases("sponge2", NULL);
1508             test(0, "puttygen", tmpfilename1, "-C", "new-comment-2",
1509                  "-o", tmpfilename2, NULL);
1510
1511             /*
1512              * See if the PuTTY key thus generated is the same as
1513              * the original.
1514              */
1515             filecmp(filename, tmpfilename2,
1516                     "p->o->s->p encrypted %s", keytypes[i]);
1517
1518             /*
1519              * Convert from ssh.com to OpenSSH.
1520              */
1521             setup_passphrases("sponge2", NULL);
1522             test(0, "puttygen", scfilename, "-o", tmpfilename1,
1523                  "-O", "private-openssh", NULL);
1524
1525             /*
1526              * Convert from OpenSSH back into a PuTTY key,
1527              * supplying the same comment as we had before we
1528              * started to ensure the comparison works.
1529              */
1530             setup_passphrases("sponge2", NULL);
1531             test(0, "puttygen", tmpfilename1, "-C", "new-comment-2",
1532                  "-o", tmpfilename2, NULL);
1533
1534             /*
1535              * See if the PuTTY key thus generated is the same as
1536              * the original.
1537              */
1538             filecmp(filename, tmpfilename2,
1539                     "p->s->o->p encrypted %s", keytypes[i]);
1540
1541             /*
1542              * Finally, do a round-trip conversion between PuTTY
1543              * and ssh.com without involving OpenSSH, to test that
1544              * the key comment is preserved in that case.
1545              */
1546             setup_passphrases("sponge2", NULL);
1547             test(0, "puttygen", "-O", "private-sshcom", "-o", tmpfilename1,
1548                  filename, NULL);
1549             setup_passphrases("sponge2", NULL);
1550             test(0, "puttygen", tmpfilename1, "-o", tmpfilename2, NULL);
1551             filecmp(filename, tmpfilename2,
1552                     "p->s->p encrypted %s", keytypes[i]);
1553         }
1554
1555         /*
1556          * Load with the wrong passphrase.
1557          */
1558         setup_passphrases("sponge8", NULL);
1559         test(1, "puttygen", "-C", "spurious-new-comment", filename, NULL);
1560
1561         /*
1562          * Load a totally bogus file.
1563          */
1564         setup_passphrases(NULL);
1565         test(1, "puttygen", "-C", "spurious-new-comment", pubfilename, NULL);
1566     }
1567     printf("%d passes, %d fails\n", passes, fails);
1568     return 0;
1569 }
1570
1571 #endif