Add AES support in the applications that support -des and -des3.
[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         while (!badarg && *args && *args[0] == '-') {
113                 if (!strcmp (*args, "-encrypt")) operation = SMIME_ENCRYPT;
114                 else if (!strcmp (*args, "-decrypt")) operation = SMIME_DECRYPT;
115                 else if (!strcmp (*args, "-sign")) operation = SMIME_SIGN;
116                 else if (!strcmp (*args, "-verify")) operation = SMIME_VERIFY;
117                 else if (!strcmp (*args, "-pk7out")) operation = SMIME_PK7OUT;
118 #ifndef OPENSSL_NO_DES
119                 else if (!strcmp (*args, "-des3")) 
120                                 cipher = EVP_des_ede3_cbc();
121                 else if (!strcmp (*args, "-des")) 
122                                 cipher = EVP_des_cbc();
123 #endif
124 #ifndef OPENSSL_NO_RC2
125                 else if (!strcmp (*args, "-rc2-40")) 
126                                 cipher = EVP_rc2_40_cbc();
127                 else if (!strcmp (*args, "-rc2-128")) 
128                                 cipher = EVP_rc2_cbc();
129                 else if (!strcmp (*args, "-rc2-64")) 
130                                 cipher = EVP_rc2_64_cbc();
131 #endif
132 #ifndef OPENSSL_NO_AES
133                 else if (!strcmp(*argv,"-aes128") == 0)
134                                 cipher = EVP_aes_128_cbc();
135                 else if (!strcmp(*argv,"-aes192") == 0)
136                                 cipher = EVP_aes_192_cbc();
137                 else if (!strcmp(*argv,"-aes256") == 0)
138                                 cipher = EVP_aes_256_cbc();
139 #endif
140                 else if (!strcmp (*args, "-text")) 
141                                 flags |= PKCS7_TEXT;
142                 else if (!strcmp (*args, "-nointern")) 
143                                 flags |= PKCS7_NOINTERN;
144                 else if (!strcmp (*args, "-noverify")) 
145                                 flags |= PKCS7_NOVERIFY;
146                 else if (!strcmp (*args, "-nochain")) 
147                                 flags |= PKCS7_NOCHAIN;
148                 else if (!strcmp (*args, "-nocerts")) 
149                                 flags |= PKCS7_NOCERTS;
150                 else if (!strcmp (*args, "-noattr")) 
151                                 flags |= PKCS7_NOATTR;
152                 else if (!strcmp (*args, "-nodetach")) 
153                                 flags &= ~PKCS7_DETACHED;
154                 else if (!strcmp (*args, "-nosmimecap"))
155                                 flags |= PKCS7_NOSMIMECAP;
156                 else if (!strcmp (*args, "-binary"))
157                                 flags |= PKCS7_BINARY;
158                 else if (!strcmp (*args, "-nosigs"))
159                                 flags |= PKCS7_NOSIGS;
160                 else if (!strcmp (*args, "-crl_check"))
161                                 store_flags |= X509_V_FLAG_CRL_CHECK;
162                 else if (!strcmp (*args, "-crl_check_all"))
163                                 store_flags |= X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL;
164                 else if (!strcmp(*args,"-rand")) {
165                         if (args[1]) {
166                                 args++;
167                                 inrand = *args;
168                         } else badarg = 1;
169                         need_rand = 1;
170                 } else if (!strcmp(*args,"-engine")) {
171                         if (args[1]) {
172                                 args++;
173                                 engine = *args;
174                         } else badarg = 1;
175                 } else if (!strcmp(*args,"-passin")) {
176                         if (args[1]) {
177                                 args++;
178                                 passargin = *args;
179                         } else badarg = 1;
180                 } else if (!strcmp (*args, "-to")) {
181                         if (args[1]) {
182                                 args++;
183                                 to = *args;
184                         } else badarg = 1;
185                 } else if (!strcmp (*args, "-from")) {
186                         if (args[1]) {
187                                 args++;
188                                 from = *args;
189                         } else badarg = 1;
190                 } else if (!strcmp (*args, "-subject")) {
191                         if (args[1]) {
192                                 args++;
193                                 subject = *args;
194                         } else badarg = 1;
195                 } else if (!strcmp (*args, "-signer")) {
196                         if (args[1]) {
197                                 args++;
198                                 signerfile = *args;
199                         } else badarg = 1;
200                 } else if (!strcmp (*args, "-recip")) {
201                         if (args[1]) {
202                                 args++;
203                                 recipfile = *args;
204                         } else badarg = 1;
205                 } else if (!strcmp (*args, "-inkey")) {
206                         if (args[1]) {
207                                 args++;
208                                 keyfile = *args;
209                         } else badarg = 1;
210                 } else if (!strcmp (*args, "-keyform")) {
211                         if (args[1]) {
212                                 args++;
213                                 keyform = str2fmt(*args);
214                         } else badarg = 1;
215                 } else if (!strcmp (*args, "-certfile")) {
216                         if (args[1]) {
217                                 args++;
218                                 certfile = *args;
219                         } else badarg = 1;
220                 } else if (!strcmp (*args, "-CAfile")) {
221                         if (args[1]) {
222                                 args++;
223                                 CAfile = *args;
224                         } else badarg = 1;
225                 } else if (!strcmp (*args, "-CApath")) {
226                         if (args[1]) {
227                                 args++;
228                                 CApath = *args;
229                         } else badarg = 1;
230                 } else if (!strcmp (*args, "-in")) {
231                         if (args[1]) {
232                                 args++;
233                                 infile = *args;
234                         } else badarg = 1;
235                 } else if (!strcmp (*args, "-inform")) {
236                         if (args[1]) {
237                                 args++;
238                                 informat = str2fmt(*args);
239                         } else badarg = 1;
240                 } else if (!strcmp (*args, "-outform")) {
241                         if (args[1]) {
242                                 args++;
243                                 outformat = str2fmt(*args);
244                         } else badarg = 1;
245                 } else if (!strcmp (*args, "-out")) {
246                         if (args[1]) {
247                                 args++;
248                                 outfile = *args;
249                         } else badarg = 1;
250                 } else if (!strcmp (*args, "-content")) {
251                         if (args[1]) {
252                                 args++;
253                                 contfile = *args;
254                         } else badarg = 1;
255                 } else badarg = 1;
256                 args++;
257         }
258
259         if(operation == SMIME_SIGN) {
260                 if(!signerfile) {
261                         BIO_printf(bio_err, "No signer certificate specified\n");
262                         badarg = 1;
263                 }
264                 need_rand = 1;
265         } else if(operation == SMIME_DECRYPT) {
266                 if(!recipfile) {
267                         BIO_printf(bio_err, "No recipient certificate and key specified\n");
268                         badarg = 1;
269                 }
270         } else if(operation == SMIME_ENCRYPT) {
271                 if(!*args) {
272                         BIO_printf(bio_err, "No recipient(s) certificate(s) specified\n");
273                         badarg = 1;
274                 }
275                 need_rand = 1;
276         } else if(!operation) badarg = 1;
277
278         if (badarg) {
279                 BIO_printf (bio_err, "Usage smime [options] cert.pem ...\n");
280                 BIO_printf (bio_err, "where options are\n");
281                 BIO_printf (bio_err, "-encrypt       encrypt message\n");
282                 BIO_printf (bio_err, "-decrypt       decrypt encrypted message\n");
283                 BIO_printf (bio_err, "-sign          sign message\n");
284                 BIO_printf (bio_err, "-verify        verify signed message\n");
285                 BIO_printf (bio_err, "-pk7out        output PKCS#7 structure\n");
286 #ifndef OPENSSL_NO_DES
287                 BIO_printf (bio_err, "-des3          encrypt with triple DES\n");
288                 BIO_printf (bio_err, "-des           encrypt with DES\n");
289 #endif
290 #ifndef OPENSSL_NO_RC2
291                 BIO_printf (bio_err, "-rc2-40        encrypt with RC2-40 (default)\n");
292                 BIO_printf (bio_err, "-rc2-64        encrypt with RC2-64\n");
293                 BIO_printf (bio_err, "-rc2-128       encrypt with RC2-128\n");
294 #endif
295 #ifndef OPENSSL_NO_AES
296                 BIO_printf (bio_err, "-aes128, -aes192, -aes256\n");
297                 BIO_printf (bio_err, "               encrypt PEM output with cbc aes\n");
298 #endif
299                 BIO_printf (bio_err, "-nointern      don't search certificates in message for signer\n");
300                 BIO_printf (bio_err, "-nosigs        don't verify message signature\n");
301                 BIO_printf (bio_err, "-noverify      don't verify signers certificate\n");
302                 BIO_printf (bio_err, "-nocerts       don't include signers certificate when signing\n");
303                 BIO_printf (bio_err, "-nodetach      use opaque signing\n");
304                 BIO_printf (bio_err, "-noattr        don't include any signed attributes\n");
305                 BIO_printf (bio_err, "-binary        don't translate message to text\n");
306                 BIO_printf (bio_err, "-certfile file other certificates file\n");
307                 BIO_printf (bio_err, "-signer file   signer certificate file\n");
308                 BIO_printf (bio_err, "-recip  file   recipient certificate file for decryption\n");
309                 BIO_printf (bio_err, "-in file       input file\n");
310                 BIO_printf (bio_err, "-inform arg    input format SMIME (default), PEM or DER\n");
311                 BIO_printf (bio_err, "-inkey file    input private key (if not signer or recipient)\n");
312                 BIO_printf (bio_err, "-keyform arg   input private key format (PEM or ENGINE)\n");
313                 BIO_printf (bio_err, "-out file      output file\n");
314                 BIO_printf (bio_err, "-outform arg   output format SMIME (default), PEM or DER\n");
315                 BIO_printf (bio_err, "-content file  supply or override content for detached signature\n");
316                 BIO_printf (bio_err, "-to addr       to address\n");
317                 BIO_printf (bio_err, "-from ad       from address\n");
318                 BIO_printf (bio_err, "-subject s     subject\n");
319                 BIO_printf (bio_err, "-text          include or delete text MIME headers\n");
320                 BIO_printf (bio_err, "-CApath dir    trusted certificates directory\n");
321                 BIO_printf (bio_err, "-CAfile file   trusted certificates file\n");
322                 BIO_printf (bio_err, "-crl_check     check revocation status of signer's certificate using CRLs\n");
323                 BIO_printf (bio_err, "-crl_check_all check revocation status of signer's certificate chain using CRLs\n");
324                 BIO_printf (bio_err, "-engine e      use engine e, possibly a hardware device.\n");
325                 BIO_printf (bio_err, "-passin arg    input file pass phrase source\n");
326                 BIO_printf(bio_err,  "-rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
327                 BIO_printf(bio_err,  "               load the file (or the files in the directory) into\n");
328                 BIO_printf(bio_err,  "               the random number generator\n");
329                 BIO_printf (bio_err, "cert.pem       recipient certificate(s) for encryption\n");
330                 goto end;
331         }
332
333         e = setup_engine(bio_err, engine, 0);
334
335         if(!app_passwd(bio_err, passargin, NULL, &passin, NULL)) {
336                 BIO_printf(bio_err, "Error getting password\n");
337                 goto end;
338         }
339
340         if (need_rand) {
341                 app_RAND_load_file(NULL, bio_err, (inrand != NULL));
342                 if (inrand != NULL)
343                         BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
344                                 app_RAND_load_files(inrand));
345         }
346
347         ret = 2;
348
349         if(operation != SMIME_SIGN) flags &= ~PKCS7_DETACHED;
350
351         if(operation & SMIME_OP) {
352                 if(flags & PKCS7_BINARY) inmode = "rb";
353                 if(outformat == FORMAT_ASN1) outmode = "wb";
354         } else {
355                 if(flags & PKCS7_BINARY) outmode = "wb";
356                 if(informat == FORMAT_ASN1) inmode = "rb";
357         }
358
359         if(operation == SMIME_ENCRYPT) {
360                 if (!cipher) {
361 #ifndef OPENSSL_NO_RC2                  
362                         cipher = EVP_rc2_40_cbc();
363 #else
364                         BIO_printf(bio_err, "No cipher selected\n");
365                         goto end;
366 #endif
367                 }
368                 encerts = sk_X509_new_null();
369                 while (*args) {
370                         if(!(cert = load_cert(bio_err,*args,FORMAT_PEM,
371                                 NULL, e, "recipient certificate file"))) {
372 #if 0                           /* An appropriate message is already printed */
373                                 BIO_printf(bio_err, "Can't read recipient certificate file %s\n", *args);
374 #endif
375                                 goto end;
376                         }
377                         sk_X509_push(encerts, cert);
378                         cert = NULL;
379                         args++;
380                 }
381         }
382
383         if(signerfile && (operation == SMIME_SIGN)) {
384                 if(!(signer = load_cert(bio_err,signerfile,FORMAT_PEM, NULL,
385                         e, "signer certificate"))) {
386 #if 0                   /* An appropri message has already been printed */
387                         BIO_printf(bio_err, "Can't read signer certificate file %s\n", signerfile);
388 #endif
389                         goto end;
390                 }
391         }
392
393         if(certfile) {
394                 if(!(other = load_certs(bio_err,certfile,FORMAT_PEM, NULL,
395                         e, "certificate file"))) {
396 #if 0                   /* An appropriate message has already been printed */
397                         BIO_printf(bio_err, "Can't read certificate file %s\n", certfile);
398 #endif
399                         ERR_print_errors(bio_err);
400                         goto end;
401                 }
402         }
403
404         if(recipfile && (operation == SMIME_DECRYPT)) {
405                 if(!(recip = load_cert(bio_err,recipfile,FORMAT_PEM,NULL,
406                         e, "recipient certificate file"))) {
407 #if 0                   /* An appropriate message has alrady been printed */
408                         BIO_printf(bio_err, "Can't read recipient certificate file %s\n", recipfile);
409 #endif
410                         ERR_print_errors(bio_err);
411                         goto end;
412                 }
413         }
414
415         if(operation == SMIME_DECRYPT) {
416                 if(!keyfile) keyfile = recipfile;
417         } else if(operation == SMIME_SIGN) {
418                 if(!keyfile) keyfile = signerfile;
419         } else keyfile = NULL;
420
421         if(keyfile) {
422                 key = load_key(bio_err, keyfile, keyform, passin, e,
423                                "signing key file");
424                 if (!key) {
425                         goto end;
426                 }
427         }
428
429         if (infile) {
430                 if (!(in = BIO_new_file(infile, inmode))) {
431                         BIO_printf (bio_err,
432                                  "Can't open input file %s\n", infile);
433                         goto end;
434                 }
435         } else in = BIO_new_fp(stdin, BIO_NOCLOSE);
436
437         if (outfile) {
438                 if (!(out = BIO_new_file(outfile, outmode))) {
439                         BIO_printf (bio_err,
440                                  "Can't open output file %s\n", outfile);
441                         goto end;
442                 }
443         } else {
444                 out = BIO_new_fp(stdout, BIO_NOCLOSE);
445 #ifdef OPENSSL_SYS_VMS
446                 {
447                     BIO *tmpbio = BIO_new(BIO_f_linebuffer());
448                     out = BIO_push(tmpbio, out);
449                 }
450 #endif
451         }
452
453         if(operation == SMIME_VERIFY) {
454                 if(!(store = setup_verify(bio_err, CAfile, CApath))) goto end;
455                 X509_STORE_set_flags(store, store_flags);
456         }
457
458
459         ret = 3;
460
461         if(operation == SMIME_ENCRYPT) {
462                 p7 = PKCS7_encrypt(encerts, in, cipher, flags);
463         } else if(operation == SMIME_SIGN) {
464                 p7 = PKCS7_sign(signer, key, other, in, flags);
465                 BIO_reset(in);
466         } else {
467                 if(informat == FORMAT_SMIME) 
468                         p7 = SMIME_read_PKCS7(in, &indata);
469                 else if(informat == FORMAT_PEM) 
470                         p7 = PEM_read_bio_PKCS7(in, NULL, NULL, NULL);
471                 else if(informat == FORMAT_ASN1) 
472                         p7 = d2i_PKCS7_bio(in, NULL);
473                 else {
474                         BIO_printf(bio_err, "Bad input format for PKCS#7 file\n");
475                         goto end;
476                 }
477
478                 if(!p7) {
479                         BIO_printf(bio_err, "Error reading S/MIME message\n");
480                         goto end;
481                 }
482                 if(contfile) {
483                         BIO_free(indata);
484                         if(!(indata = BIO_new_file(contfile, "rb"))) {
485                                 BIO_printf(bio_err, "Can't read content file %s\n", contfile);
486                                 goto end;
487                         }
488                 }
489         }
490
491         if(!p7) {
492                 BIO_printf(bio_err, "Error creating PKCS#7 structure\n");
493                 goto end;
494         }
495
496         ret = 4;
497         if(operation == SMIME_DECRYPT) {
498                 if(!PKCS7_decrypt(p7, key, recip, out, flags)) {
499                         BIO_printf(bio_err, "Error decrypting PKCS#7 structure\n");
500                         goto end;
501                 }
502         } else if(operation == SMIME_VERIFY) {
503                 STACK_OF(X509) *signers;
504                 if(PKCS7_verify(p7, other, store, indata, out, flags)) {
505                         BIO_printf(bio_err, "Verification Successful\n");
506                 } else {
507                         BIO_printf(bio_err, "Verification Failure\n");
508                         goto end;
509                 }
510                 signers = PKCS7_get0_signers(p7, other, flags);
511                 if(!save_certs(signerfile, signers)) {
512                         BIO_printf(bio_err, "Error writing signers to %s\n",
513                                                                 signerfile);
514                         ret = 5;
515                         goto end;
516                 }
517                 sk_X509_free(signers);
518         } else if(operation == SMIME_PK7OUT) {
519                 PEM_write_bio_PKCS7(out, p7);
520         } else {
521                 if(to) BIO_printf(out, "To: %s\n", to);
522                 if(from) BIO_printf(out, "From: %s\n", from);
523                 if(subject) BIO_printf(out, "Subject: %s\n", subject);
524                 if(outformat == FORMAT_SMIME) 
525                         SMIME_write_PKCS7(out, p7, in, flags);
526                 else if(outformat == FORMAT_PEM) 
527                         PEM_write_bio_PKCS7(out,p7);
528                 else if(outformat == FORMAT_ASN1) 
529                         i2d_PKCS7_bio(out,p7);
530                 else {
531                         BIO_printf(bio_err, "Bad output format for PKCS#7 file\n");
532                         goto end;
533                 }
534         }
535         ret = 0;
536 end:
537         if (need_rand)
538                 app_RAND_write_file(NULL, bio_err);
539         if(ret) ERR_print_errors(bio_err);
540         sk_X509_pop_free(encerts, X509_free);
541         sk_X509_pop_free(other, X509_free);
542         X509_STORE_free(store);
543         X509_free(cert);
544         X509_free(recip);
545         X509_free(signer);
546         EVP_PKEY_free(key);
547         PKCS7_free(p7);
548         BIO_free(in);
549         BIO_free(indata);
550         BIO_free_all(out);
551         if(passin) OPENSSL_free(passin);
552         return (ret);
553 }
554
555 static int save_certs(char *signerfile, STACK_OF(X509) *signers)
556 {
557         int i;
558         BIO *tmp;
559         if(!signerfile) return 1;
560         tmp = BIO_new_file(signerfile, "w");
561         if(!tmp) return 0;
562         for(i = 0; i < sk_X509_num(signers); i++)
563                 PEM_write_bio_X509(tmp, sk_X509_value(signers, i));
564         BIO_free(tmp);
565         return 1;
566 }
567