Fix new -aes command argument handling
[openssl.git] / apps / smime.c
1 /* smime.c */
2 /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
3  * project 1999.
4  */
5 /* ====================================================================
6  * Copyright (c) 1999 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer. 
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    licensing@OpenSSL.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  *
53  * This product includes cryptographic software written by Eric Young
54  * (eay@cryptsoft.com).  This product includes software written by Tim
55  * Hudson (tjh@cryptsoft.com).
56  *
57  */
58
59 /* S/MIME utility function */
60
61 #include <stdio.h>
62 #include <string.h>
63 #include "apps.h"
64 #include <openssl/crypto.h>
65 #include <openssl/pem.h>
66 #include <openssl/err.h>
67
68 #undef PROG
69 #define PROG smime_main
70 static int save_certs(char *signerfile, STACK_OF(X509) *signers);
71
72 #define SMIME_OP        0x10
73 #define SMIME_ENCRYPT   (1 | SMIME_OP)
74 #define SMIME_DECRYPT   2
75 #define SMIME_SIGN      (3 | SMIME_OP)
76 #define SMIME_VERIFY    4
77 #define SMIME_PK7OUT    5
78
79 int MAIN(int, char **);
80
81 int MAIN(int argc, char **argv)
82 {
83         ENGINE *e = NULL;
84         int operation = 0;
85         int ret = 0;
86         char **args;
87         char *inmode = "r", *outmode = "w";
88         char *infile = NULL, *outfile = NULL;
89         char *signerfile = NULL, *recipfile = NULL;
90         char *certfile = NULL, *keyfile = NULL, *contfile=NULL;
91         const EVP_CIPHER *cipher = NULL;
92         PKCS7 *p7 = NULL;
93         X509_STORE *store = NULL;
94         X509 *cert = NULL, *recip = NULL, *signer = NULL;
95         EVP_PKEY *key = NULL;
96         STACK_OF(X509) *encerts = NULL, *other = NULL;
97         BIO *in = NULL, *out = NULL, *indata = NULL;
98         int badarg = 0;
99         int flags = PKCS7_DETACHED, store_flags = 0;
100         char *to = NULL, *from = NULL, *subject = NULL;
101         char *CAfile = NULL, *CApath = NULL;
102         char *passargin = NULL, *passin = NULL;
103         char *inrand = NULL;
104         int need_rand = 0;
105         int informat = FORMAT_SMIME, outformat = FORMAT_SMIME;
106         int keyform = FORMAT_PEM;
107         char *engine=NULL;
108
109         args = argv + 1;
110         ret = 1;
111
112         if (!load_config(bio_err, NULL))
113                 goto end;
114
115         while (!badarg && *args && *args[0] == '-') {
116                 if (!strcmp (*args, "-encrypt")) operation = SMIME_ENCRYPT;
117                 else if (!strcmp (*args, "-decrypt")) operation = SMIME_DECRYPT;
118                 else if (!strcmp (*args, "-sign")) operation = SMIME_SIGN;
119                 else if (!strcmp (*args, "-verify")) operation = SMIME_VERIFY;
120                 else if (!strcmp (*args, "-pk7out")) operation = SMIME_PK7OUT;
121 #ifndef OPENSSL_NO_DES
122                 else if (!strcmp (*args, "-des3")) 
123                                 cipher = EVP_des_ede3_cbc();
124                 else if (!strcmp (*args, "-des")) 
125                                 cipher = EVP_des_cbc();
126 #endif
127 #ifndef OPENSSL_NO_RC2
128                 else if (!strcmp (*args, "-rc2-40")) 
129                                 cipher = EVP_rc2_40_cbc();
130                 else if (!strcmp (*args, "-rc2-128")) 
131                                 cipher = EVP_rc2_cbc();
132                 else if (!strcmp (*args, "-rc2-64")) 
133                                 cipher = EVP_rc2_64_cbc();
134 #endif
135 #ifndef OPENSSL_NO_AES
136                 else if (!strcmp(*args,"-aes128"))
137                                 cipher = EVP_aes_128_cbc();
138                 else if (!strcmp(*args,"-aes192"))
139                                 cipher = EVP_aes_192_cbc();
140                 else if (!strcmp(*args,"-aes256"))
141                                 cipher = EVP_aes_256_cbc();
142 #endif
143                 else if (!strcmp (*args, "-text")) 
144                                 flags |= PKCS7_TEXT;
145                 else if (!strcmp (*args, "-nointern")) 
146                                 flags |= PKCS7_NOINTERN;
147                 else if (!strcmp (*args, "-noverify")) 
148                                 flags |= PKCS7_NOVERIFY;
149                 else if (!strcmp (*args, "-nochain")) 
150                                 flags |= PKCS7_NOCHAIN;
151                 else if (!strcmp (*args, "-nocerts")) 
152                                 flags |= PKCS7_NOCERTS;
153                 else if (!strcmp (*args, "-noattr")) 
154                                 flags |= PKCS7_NOATTR;
155                 else if (!strcmp (*args, "-nodetach")) 
156                                 flags &= ~PKCS7_DETACHED;
157                 else if (!strcmp (*args, "-nosmimecap"))
158                                 flags |= PKCS7_NOSMIMECAP;
159                 else if (!strcmp (*args, "-binary"))
160                                 flags |= PKCS7_BINARY;
161                 else if (!strcmp (*args, "-nosigs"))
162                                 flags |= PKCS7_NOSIGS;
163                 else if (!strcmp (*args, "-crl_check"))
164                                 store_flags |= X509_V_FLAG_CRL_CHECK;
165                 else if (!strcmp (*args, "-crl_check_all"))
166                                 store_flags |= X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL;
167                 else if (!strcmp(*args,"-rand")) {
168                         if (args[1]) {
169                                 args++;
170                                 inrand = *args;
171                         } else badarg = 1;
172                         need_rand = 1;
173                 } else if (!strcmp(*args,"-engine")) {
174                         if (args[1]) {
175                                 args++;
176                                 engine = *args;
177                         } else badarg = 1;
178                 } else if (!strcmp(*args,"-passin")) {
179                         if (args[1]) {
180                                 args++;
181                                 passargin = *args;
182                         } else badarg = 1;
183                 } else if (!strcmp (*args, "-to")) {
184                         if (args[1]) {
185                                 args++;
186                                 to = *args;
187                         } else badarg = 1;
188                 } else if (!strcmp (*args, "-from")) {
189                         if (args[1]) {
190                                 args++;
191                                 from = *args;
192                         } else badarg = 1;
193                 } else if (!strcmp (*args, "-subject")) {
194                         if (args[1]) {
195                                 args++;
196                                 subject = *args;
197                         } else badarg = 1;
198                 } else if (!strcmp (*args, "-signer")) {
199                         if (args[1]) {
200                                 args++;
201                                 signerfile = *args;
202                         } else badarg = 1;
203                 } else if (!strcmp (*args, "-recip")) {
204                         if (args[1]) {
205                                 args++;
206                                 recipfile = *args;
207                         } else badarg = 1;
208                 } else if (!strcmp (*args, "-inkey")) {
209                         if (args[1]) {
210                                 args++;
211                                 keyfile = *args;
212                         } else badarg = 1;
213                 } else if (!strcmp (*args, "-keyform")) {
214                         if (args[1]) {
215                                 args++;
216                                 keyform = str2fmt(*args);
217                         } else badarg = 1;
218                 } else if (!strcmp (*args, "-certfile")) {
219                         if (args[1]) {
220                                 args++;
221                                 certfile = *args;
222                         } else badarg = 1;
223                 } else if (!strcmp (*args, "-CAfile")) {
224                         if (args[1]) {
225                                 args++;
226                                 CAfile = *args;
227                         } else badarg = 1;
228                 } else if (!strcmp (*args, "-CApath")) {
229                         if (args[1]) {
230                                 args++;
231                                 CApath = *args;
232                         } else badarg = 1;
233                 } else if (!strcmp (*args, "-in")) {
234                         if (args[1]) {
235                                 args++;
236                                 infile = *args;
237                         } else badarg = 1;
238                 } else if (!strcmp (*args, "-inform")) {
239                         if (args[1]) {
240                                 args++;
241                                 informat = str2fmt(*args);
242                         } else badarg = 1;
243                 } else if (!strcmp (*args, "-outform")) {
244                         if (args[1]) {
245                                 args++;
246                                 outformat = str2fmt(*args);
247                         } else badarg = 1;
248                 } else if (!strcmp (*args, "-out")) {
249                         if (args[1]) {
250                                 args++;
251                                 outfile = *args;
252                         } else badarg = 1;
253                 } else if (!strcmp (*args, "-content")) {
254                         if (args[1]) {
255                                 args++;
256                                 contfile = *args;
257                         } else badarg = 1;
258                 } else badarg = 1;
259                 args++;
260         }
261
262         if(operation == SMIME_SIGN) {
263                 if(!signerfile) {
264                         BIO_printf(bio_err, "No signer certificate specified\n");
265                         badarg = 1;
266                 }
267                 need_rand = 1;
268         } else if(operation == SMIME_DECRYPT) {
269                 if(!recipfile) {
270                         BIO_printf(bio_err, "No recipient certificate and key specified\n");
271                         badarg = 1;
272                 }
273         } else if(operation == SMIME_ENCRYPT) {
274                 if(!*args) {
275                         BIO_printf(bio_err, "No recipient(s) certificate(s) specified\n");
276                         badarg = 1;
277                 }
278                 need_rand = 1;
279         } else if(!operation) badarg = 1;
280
281         if (badarg) {
282                 BIO_printf (bio_err, "Usage smime [options] cert.pem ...\n");
283                 BIO_printf (bio_err, "where options are\n");
284                 BIO_printf (bio_err, "-encrypt       encrypt message\n");
285                 BIO_printf (bio_err, "-decrypt       decrypt encrypted message\n");
286                 BIO_printf (bio_err, "-sign          sign message\n");
287                 BIO_printf (bio_err, "-verify        verify signed message\n");
288                 BIO_printf (bio_err, "-pk7out        output PKCS#7 structure\n");
289 #ifndef OPENSSL_NO_DES
290                 BIO_printf (bio_err, "-des3          encrypt with triple DES\n");
291                 BIO_printf (bio_err, "-des           encrypt with DES\n");
292 #endif
293 #ifndef OPENSSL_NO_RC2
294                 BIO_printf (bio_err, "-rc2-40        encrypt with RC2-40 (default)\n");
295                 BIO_printf (bio_err, "-rc2-64        encrypt with RC2-64\n");
296                 BIO_printf (bio_err, "-rc2-128       encrypt with RC2-128\n");
297 #endif
298 #ifndef OPENSSL_NO_AES
299                 BIO_printf (bio_err, "-aes128, -aes192, -aes256\n");
300                 BIO_printf (bio_err, "               encrypt PEM output with cbc aes\n");
301 #endif
302                 BIO_printf (bio_err, "-nointern      don't search certificates in message for signer\n");
303                 BIO_printf (bio_err, "-nosigs        don't verify message signature\n");
304                 BIO_printf (bio_err, "-noverify      don't verify signers certificate\n");
305                 BIO_printf (bio_err, "-nocerts       don't include signers certificate when signing\n");
306                 BIO_printf (bio_err, "-nodetach      use opaque signing\n");
307                 BIO_printf (bio_err, "-noattr        don't include any signed attributes\n");
308                 BIO_printf (bio_err, "-binary        don't translate message to text\n");
309                 BIO_printf (bio_err, "-certfile file other certificates file\n");
310                 BIO_printf (bio_err, "-signer file   signer certificate file\n");
311                 BIO_printf (bio_err, "-recip  file   recipient certificate file for decryption\n");
312                 BIO_printf (bio_err, "-in file       input file\n");
313                 BIO_printf (bio_err, "-inform arg    input format SMIME (default), PEM or DER\n");
314                 BIO_printf (bio_err, "-inkey file    input private key (if not signer or recipient)\n");
315                 BIO_printf (bio_err, "-keyform arg   input private key format (PEM or ENGINE)\n");
316                 BIO_printf (bio_err, "-out file      output file\n");
317                 BIO_printf (bio_err, "-outform arg   output format SMIME (default), PEM or DER\n");
318                 BIO_printf (bio_err, "-content file  supply or override content for detached signature\n");
319                 BIO_printf (bio_err, "-to addr       to address\n");
320                 BIO_printf (bio_err, "-from ad       from address\n");
321                 BIO_printf (bio_err, "-subject s     subject\n");
322                 BIO_printf (bio_err, "-text          include or delete text MIME headers\n");
323                 BIO_printf (bio_err, "-CApath dir    trusted certificates directory\n");
324                 BIO_printf (bio_err, "-CAfile file   trusted certificates file\n");
325                 BIO_printf (bio_err, "-crl_check     check revocation status of signer's certificate using CRLs\n");
326                 BIO_printf (bio_err, "-crl_check_all check revocation status of signer's certificate chain using CRLs\n");
327                 BIO_printf (bio_err, "-engine e      use engine e, possibly a hardware device.\n");
328                 BIO_printf (bio_err, "-passin arg    input file pass phrase source\n");
329                 BIO_printf(bio_err,  "-rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
330                 BIO_printf(bio_err,  "               load the file (or the files in the directory) into\n");
331                 BIO_printf(bio_err,  "               the random number generator\n");
332                 BIO_printf (bio_err, "cert.pem       recipient certificate(s) for encryption\n");
333                 goto end;
334         }
335
336         e = setup_engine(bio_err, engine, 0);
337
338         if(!app_passwd(bio_err, passargin, NULL, &passin, NULL)) {
339                 BIO_printf(bio_err, "Error getting password\n");
340                 goto end;
341         }
342
343         if (need_rand) {
344                 app_RAND_load_file(NULL, bio_err, (inrand != NULL));
345                 if (inrand != NULL)
346                         BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
347                                 app_RAND_load_files(inrand));
348         }
349
350         ret = 2;
351
352         if(operation != SMIME_SIGN) flags &= ~PKCS7_DETACHED;
353
354         if(operation & SMIME_OP) {
355                 if(flags & PKCS7_BINARY) inmode = "rb";
356                 if(outformat == FORMAT_ASN1) outmode = "wb";
357         } else {
358                 if(flags & PKCS7_BINARY) outmode = "wb";
359                 if(informat == FORMAT_ASN1) inmode = "rb";
360         }
361
362         if(operation == SMIME_ENCRYPT) {
363                 if (!cipher) {
364 #ifndef OPENSSL_NO_RC2                  
365                         cipher = EVP_rc2_40_cbc();
366 #else
367                         BIO_printf(bio_err, "No cipher selected\n");
368                         goto end;
369 #endif
370                 }
371                 encerts = sk_X509_new_null();
372                 while (*args) {
373                         if(!(cert = load_cert(bio_err,*args,FORMAT_PEM,
374                                 NULL, e, "recipient certificate file"))) {
375 #if 0                           /* An appropriate message is already printed */
376                                 BIO_printf(bio_err, "Can't read recipient certificate file %s\n", *args);
377 #endif
378                                 goto end;
379                         }
380                         sk_X509_push(encerts, cert);
381                         cert = NULL;
382                         args++;
383                 }
384         }
385
386         if(signerfile && (operation == SMIME_SIGN)) {
387                 if(!(signer = load_cert(bio_err,signerfile,FORMAT_PEM, NULL,
388                         e, "signer certificate"))) {
389 #if 0                   /* An appropri message has already been printed */
390                         BIO_printf(bio_err, "Can't read signer certificate file %s\n", signerfile);
391 #endif
392                         goto end;
393                 }
394         }
395
396         if(certfile) {
397                 if(!(other = load_certs(bio_err,certfile,FORMAT_PEM, NULL,
398                         e, "certificate file"))) {
399 #if 0                   /* An appropriate message has already been printed */
400                         BIO_printf(bio_err, "Can't read certificate file %s\n", certfile);
401 #endif
402                         ERR_print_errors(bio_err);
403                         goto end;
404                 }
405         }
406
407         if(recipfile && (operation == SMIME_DECRYPT)) {
408                 if(!(recip = load_cert(bio_err,recipfile,FORMAT_PEM,NULL,
409                         e, "recipient certificate file"))) {
410 #if 0                   /* An appropriate message has alrady been printed */
411                         BIO_printf(bio_err, "Can't read recipient certificate file %s\n", recipfile);
412 #endif
413                         ERR_print_errors(bio_err);
414                         goto end;
415                 }
416         }
417
418         if(operation == SMIME_DECRYPT) {
419                 if(!keyfile) keyfile = recipfile;
420         } else if(operation == SMIME_SIGN) {
421                 if(!keyfile) keyfile = signerfile;
422         } else keyfile = NULL;
423
424         if(keyfile) {
425                 key = load_key(bio_err, keyfile, keyform, passin, e,
426                                "signing key file");
427                 if (!key) {
428                         goto end;
429                 }
430         }
431
432         if (infile) {
433                 if (!(in = BIO_new_file(infile, inmode))) {
434                         BIO_printf (bio_err,
435                                  "Can't open input file %s\n", infile);
436                         goto end;
437                 }
438         } else in = BIO_new_fp(stdin, BIO_NOCLOSE);
439
440         if (outfile) {
441                 if (!(out = BIO_new_file(outfile, outmode))) {
442                         BIO_printf (bio_err,
443                                  "Can't open output file %s\n", outfile);
444                         goto end;
445                 }
446         } else {
447                 out = BIO_new_fp(stdout, BIO_NOCLOSE);
448 #ifdef OPENSSL_SYS_VMS
449                 {
450                     BIO *tmpbio = BIO_new(BIO_f_linebuffer());
451                     out = BIO_push(tmpbio, out);
452                 }
453 #endif
454         }
455
456         if(operation == SMIME_VERIFY) {
457                 if(!(store = setup_verify(bio_err, CAfile, CApath))) goto end;
458                 X509_STORE_set_flags(store, store_flags);
459         }
460
461
462         ret = 3;
463
464         if(operation == SMIME_ENCRYPT) {
465                 p7 = PKCS7_encrypt(encerts, in, cipher, flags);
466         } else if(operation == SMIME_SIGN) {
467                 p7 = PKCS7_sign(signer, key, other, in, flags);
468                 BIO_reset(in);
469         } else {
470                 if(informat == FORMAT_SMIME) 
471                         p7 = SMIME_read_PKCS7(in, &indata);
472                 else if(informat == FORMAT_PEM) 
473                         p7 = PEM_read_bio_PKCS7(in, NULL, NULL, NULL);
474                 else if(informat == FORMAT_ASN1) 
475                         p7 = d2i_PKCS7_bio(in, NULL);
476                 else {
477                         BIO_printf(bio_err, "Bad input format for PKCS#7 file\n");
478                         goto end;
479                 }
480
481                 if(!p7) {
482                         BIO_printf(bio_err, "Error reading S/MIME message\n");
483                         goto end;
484                 }
485                 if(contfile) {
486                         BIO_free(indata);
487                         if(!(indata = BIO_new_file(contfile, "rb"))) {
488                                 BIO_printf(bio_err, "Can't read content file %s\n", contfile);
489                                 goto end;
490                         }
491                 }
492         }
493
494         if(!p7) {
495                 BIO_printf(bio_err, "Error creating PKCS#7 structure\n");
496                 goto end;
497         }
498
499         ret = 4;
500         if(operation == SMIME_DECRYPT) {
501                 if(!PKCS7_decrypt(p7, key, recip, out, flags)) {
502                         BIO_printf(bio_err, "Error decrypting PKCS#7 structure\n");
503                         goto end;
504                 }
505         } else if(operation == SMIME_VERIFY) {
506                 STACK_OF(X509) *signers;
507                 if(PKCS7_verify(p7, other, store, indata, out, flags)) {
508                         BIO_printf(bio_err, "Verification Successful\n");
509                 } else {
510                         BIO_printf(bio_err, "Verification Failure\n");
511                         goto end;
512                 }
513                 signers = PKCS7_get0_signers(p7, other, flags);
514                 if(!save_certs(signerfile, signers)) {
515                         BIO_printf(bio_err, "Error writing signers to %s\n",
516                                                                 signerfile);
517                         ret = 5;
518                         goto end;
519                 }
520                 sk_X509_free(signers);
521         } else if(operation == SMIME_PK7OUT) {
522                 PEM_write_bio_PKCS7(out, p7);
523         } else {
524                 if(to) BIO_printf(out, "To: %s\n", to);
525                 if(from) BIO_printf(out, "From: %s\n", from);
526                 if(subject) BIO_printf(out, "Subject: %s\n", subject);
527                 if(outformat == FORMAT_SMIME) 
528                         SMIME_write_PKCS7(out, p7, in, flags);
529                 else if(outformat == FORMAT_PEM) 
530                         PEM_write_bio_PKCS7(out,p7);
531                 else if(outformat == FORMAT_ASN1) 
532                         i2d_PKCS7_bio(out,p7);
533                 else {
534                         BIO_printf(bio_err, "Bad output format for PKCS#7 file\n");
535                         goto end;
536                 }
537         }
538         ret = 0;
539 end:
540         if (need_rand)
541                 app_RAND_write_file(NULL, bio_err);
542         if(ret) ERR_print_errors(bio_err);
543         sk_X509_pop_free(encerts, X509_free);
544         sk_X509_pop_free(other, X509_free);
545         X509_STORE_free(store);
546         X509_free(cert);
547         X509_free(recip);
548         X509_free(signer);
549         EVP_PKEY_free(key);
550         PKCS7_free(p7);
551         BIO_free(in);
552         BIO_free(indata);
553         BIO_free_all(out);
554         if(passin) OPENSSL_free(passin);
555         return (ret);
556 }
557
558 static int save_certs(char *signerfile, STACK_OF(X509) *signers)
559 {
560         int i;
561         BIO *tmp;
562         if(!signerfile) return 1;
563         tmp = BIO_new_file(signerfile, "w");
564         if(!tmp) return 0;
565         for(i = 0; i < sk_X509_num(signers); i++)
566                 PEM_write_bio_X509(tmp, sk_X509_value(signers, i));
567         BIO_free(tmp);
568         return 1;
569 }
570