Fix some minor documentation issues
[openssl.git] / apps / x509.c
1 /* apps/x509.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  *
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  *
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  *
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  *
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  *
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58
59 #include <assert.h>
60 #include <stdio.h>
61 #include <stdlib.h>
62 #include <string.h>
63 #include "apps.h"
64 #include <openssl/bio.h>
65 #include <openssl/asn1.h>
66 #include <openssl/err.h>
67 #include <openssl/bn.h>
68 #include <openssl/evp.h>
69 #include <openssl/x509.h>
70 #include <openssl/x509v3.h>
71 #include <openssl/objects.h>
72 #include <openssl/pem.h>
73 #ifndef OPENSSL_NO_RSA
74 # include <openssl/rsa.h>
75 #endif
76 #ifndef OPENSSL_NO_DSA
77 # include <openssl/dsa.h>
78 #endif
79
80 #undef PROG
81 #define PROG x509_main
82
83 #undef POSTFIX
84 #define POSTFIX ".srl"
85 #define DEF_DAYS        30
86
87 static const char *x509_usage[] = {
88     "usage: x509 args\n",
89     " -inform arg     - input format - default PEM (one of DER, NET or PEM)\n",
90     " -outform arg    - output format - default PEM (one of DER, NET or PEM)\n",
91     " -keyform arg    - private key format - default PEM\n",
92     " -CAform arg     - CA format - default PEM\n",
93     " -CAkeyform arg  - CA key format - default PEM\n",
94     " -in arg         - input file - default stdin\n",
95     " -out arg        - output file - default stdout\n",
96     " -passin arg     - private key password source\n",
97     " -serial         - print serial number value\n",
98     " -subject_hash   - print subject hash value\n",
99 #ifndef OPENSSL_NO_MD5
100     " -subject_hash_old   - print old-style (MD5) subject hash value\n",
101 #endif
102     " -issuer_hash    - print issuer hash value\n",
103 #ifndef OPENSSL_NO_MD5
104     " -issuer_hash_old    - print old-style (MD5) issuer hash value\n",
105 #endif
106     " -hash           - synonym for -subject_hash\n",
107     " -subject        - print subject DN\n",
108     " -issuer         - print issuer DN\n",
109     " -email          - print email address(es)\n",
110     " -startdate      - notBefore field\n",
111     " -enddate        - notAfter field\n",
112     " -purpose        - print out certificate purposes\n",
113     " -dates          - both Before and After dates\n",
114     " -modulus        - print the RSA key modulus\n",
115     " -pubkey         - output the public key\n",
116     " -fingerprint    - print the certificate fingerprint\n",
117     " -alias          - output certificate alias\n",
118     " -noout          - no certificate output\n",
119     " -ocspid         - print OCSP hash values for the subject name and public key\n",
120     " -ocsp_uri       - print OCSP Responder URL(s)\n",
121     " -trustout       - output a \"trusted\" certificate\n",
122     " -clrtrust       - clear all trusted purposes\n",
123     " -clrreject      - clear all rejected purposes\n",
124     " -addtrust arg   - trust certificate for a given purpose\n",
125     " -addreject arg  - reject certificate for a given purpose\n",
126     " -setalias arg   - set certificate alias\n",
127     " -days arg       - How long till expiry of a signed certificate - def 30 days\n",
128     " -checkend arg   - check whether the cert expires in the next arg seconds\n",
129     "                   exit 1 if so, 0 if not\n",
130     " -signkey arg    - self sign cert with arg\n",
131     " -x509toreq      - output a certification request object\n",
132     " -req            - input is a certificate request, sign and output.\n",
133     " -CA arg         - set the CA certificate, must be PEM format.\n",
134     " -CAkey arg      - set the CA key, must be PEM format\n",
135     "                   missing, it is assumed to be in the CA file.\n",
136     " -CAcreateserial - create serial number file if it does not exist\n",
137     " -CAserial arg   - serial file\n",
138     " -set_serial     - serial number to use\n",
139     " -text           - print the certificate in text form\n",
140     " -C              - print out C code forms\n",
141     " -md2/-md5/-sha1/-mdc2 - digest to use\n",
142     " -extfile        - configuration file with X509V3 extensions to add\n",
143     " -extensions     - section from config file with X509V3 extensions to add\n",
144     " -clrext         - delete extensions before signing and input certificate\n",
145     " -nameopt arg    - various certificate name options\n",
146 #ifndef OPENSSL_NO_ENGINE
147     " -engine e       - use engine e, possibly a hardware device.\n",
148 #endif
149     " -certopt arg    - various certificate text options\n",
150     " -checkhost host - check certificate matches \"host\"\n",
151     " -checkemail email - check certificate matches \"email\"\n",
152     " -checkip ipaddr - check certificate matches \"ipaddr\"\n",
153     NULL
154 };
155
156 static int callb(int ok, X509_STORE_CTX *ctx);
157 static int sign(X509 *x, EVP_PKEY *pkey, int days, int clrext,
158                 const EVP_MD *digest, CONF *conf, char *section);
159 static int x509_certify(X509_STORE *ctx, char *CAfile, const EVP_MD *digest,
160                         X509 *x, X509 *xca, EVP_PKEY *pkey,
161                         STACK_OF(OPENSSL_STRING) *sigopts, char *serial,
162                         int create, int days, int clrext, CONF *conf,
163                         char *section, ASN1_INTEGER *sno);
164 static int purpose_print(BIO *bio, X509 *cert, X509_PURPOSE *pt);
165 static int reqfile = 0;
166 #ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL
167 static int force_version = 2;
168 #endif
169
170 int MAIN(int, char **);
171
172 int MAIN(int argc, char **argv)
173 {
174     ENGINE *e = NULL;
175     int ret = 1;
176     X509_REQ *req = NULL;
177     X509 *x = NULL, *xca = NULL;
178     ASN1_OBJECT *objtmp;
179     STACK_OF(OPENSSL_STRING) *sigopts = NULL;
180     EVP_PKEY *Upkey = NULL, *CApkey = NULL, *fkey = NULL;
181     ASN1_INTEGER *sno = NULL;
182     int i, num, badops = 0, badsig = 0;
183     BIO *out = NULL;
184     BIO *STDout = NULL;
185     STACK_OF(ASN1_OBJECT) *trust = NULL, *reject = NULL;
186     int informat, outformat, keyformat, CAformat, CAkeyformat;
187     char *infile = NULL, *outfile = NULL, *keyfile = NULL, *CAfile = NULL;
188     char *CAkeyfile = NULL, *CAserial = NULL;
189     char *fkeyfile = NULL;
190     char *alias = NULL;
191     int text = 0, serial = 0, subject = 0, issuer = 0, startdate =
192         0, enddate = 0;
193     int next_serial = 0;
194     int subject_hash = 0, issuer_hash = 0, ocspid = 0;
195 #ifndef OPENSSL_NO_MD5
196     int subject_hash_old = 0, issuer_hash_old = 0;
197 #endif
198     int noout = 0, sign_flag = 0, CA_flag = 0, CA_createserial = 0, email = 0;
199     int ocsp_uri = 0;
200     int trustout = 0, clrtrust = 0, clrreject = 0, aliasout = 0, clrext = 0;
201     int C = 0;
202     int x509req = 0, days = DEF_DAYS, modulus = 0, pubkey = 0;
203     int pprint = 0;
204     const char **pp;
205     X509_STORE *ctx = NULL;
206     X509_REQ *rq = NULL;
207     int fingerprint = 0;
208     char buf[256];
209     const EVP_MD *md_alg, *digest = NULL;
210     CONF *extconf = NULL;
211     char *extsect = NULL, *extfile = NULL, *passin = NULL, *passargin = NULL;
212     int need_rand = 0;
213     int checkend = 0, checkoffset = 0;
214     unsigned long nmflag = 0, certflag = 0;
215     char *checkhost = NULL;
216     char *checkemail = NULL;
217     char *checkip = NULL;
218 #ifndef OPENSSL_NO_ENGINE
219     char *engine = NULL;
220 #endif
221
222     reqfile = 0;
223
224     apps_startup();
225
226     if (bio_err == NULL)
227         bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
228
229     if (!load_config(bio_err, NULL))
230         goto end;
231     STDout = BIO_new_fp(stdout, BIO_NOCLOSE);
232 #ifdef OPENSSL_SYS_VMS
233     {
234         BIO *tmpbio = BIO_new(BIO_f_linebuffer());
235         STDout = BIO_push(tmpbio, STDout);
236     }
237 #endif
238
239     informat = FORMAT_PEM;
240     outformat = FORMAT_PEM;
241     keyformat = FORMAT_PEM;
242     CAformat = FORMAT_PEM;
243     CAkeyformat = FORMAT_PEM;
244
245     ctx = X509_STORE_new();
246     if (ctx == NULL)
247         goto end;
248     X509_STORE_set_verify_cb(ctx, callb);
249
250     argc--;
251     argv++;
252     num = 0;
253     while (argc >= 1) {
254         if (strcmp(*argv, "-inform") == 0) {
255             if (--argc < 1)
256                 goto bad;
257             informat = str2fmt(*(++argv));
258         } else if (strcmp(*argv, "-outform") == 0) {
259             if (--argc < 1)
260                 goto bad;
261             outformat = str2fmt(*(++argv));
262         } else if (strcmp(*argv, "-keyform") == 0) {
263             if (--argc < 1)
264                 goto bad;
265             keyformat = str2fmt(*(++argv));
266         } else if (strcmp(*argv, "-req") == 0) {
267             reqfile = 1;
268             need_rand = 1;
269         } else if (strcmp(*argv, "-CAform") == 0) {
270             if (--argc < 1)
271                 goto bad;
272             CAformat = str2fmt(*(++argv));
273         } else if (strcmp(*argv, "-CAkeyform") == 0) {
274             if (--argc < 1)
275                 goto bad;
276             CAkeyformat = str2fmt(*(++argv));
277         } else if (strcmp(*argv, "-sigopt") == 0) {
278             if (--argc < 1)
279                 goto bad;
280             if (!sigopts)
281                 sigopts = sk_OPENSSL_STRING_new_null();
282             if (!sigopts || !sk_OPENSSL_STRING_push(sigopts, *(++argv)))
283                 goto bad;
284         }
285 #ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL
286         else if (strcmp(*argv, "-force_version") == 0) {
287             if (--argc < 1)
288                 goto bad;
289             force_version = atoi(*(++argv)) - 1;
290         }
291 #endif
292         else if (strcmp(*argv, "-days") == 0) {
293             if (--argc < 1)
294                 goto bad;
295             days = atoi(*(++argv));
296             if (days == 0) {
297                 BIO_printf(bio_err, "bad number of days\n");
298                 goto bad;
299             }
300         } else if (strcmp(*argv, "-passin") == 0) {
301             if (--argc < 1)
302                 goto bad;
303             passargin = *(++argv);
304         } else if (strcmp(*argv, "-extfile") == 0) {
305             if (--argc < 1)
306                 goto bad;
307             extfile = *(++argv);
308         } else if (strcmp(*argv, "-extensions") == 0) {
309             if (--argc < 1)
310                 goto bad;
311             extsect = *(++argv);
312         } else if (strcmp(*argv, "-in") == 0) {
313             if (--argc < 1)
314                 goto bad;
315             infile = *(++argv);
316         } else if (strcmp(*argv, "-out") == 0) {
317             if (--argc < 1)
318                 goto bad;
319             outfile = *(++argv);
320         } else if (strcmp(*argv, "-signkey") == 0) {
321             if (--argc < 1)
322                 goto bad;
323             keyfile = *(++argv);
324             sign_flag = ++num;
325             need_rand = 1;
326         } else if (strcmp(*argv, "-CA") == 0) {
327             if (--argc < 1)
328                 goto bad;
329             CAfile = *(++argv);
330             CA_flag = ++num;
331             need_rand = 1;
332         } else if (strcmp(*argv, "-CAkey") == 0) {
333             if (--argc < 1)
334                 goto bad;
335             CAkeyfile = *(++argv);
336         } else if (strcmp(*argv, "-CAserial") == 0) {
337             if (--argc < 1)
338                 goto bad;
339             CAserial = *(++argv);
340         } else if (strcmp(*argv, "-set_serial") == 0) {
341             if (--argc < 1)
342                 goto bad;
343             if (!(sno = s2i_ASN1_INTEGER(NULL, *(++argv))))
344                 goto bad;
345         } else if (strcmp(*argv, "-force_pubkey") == 0) {
346             if (--argc < 1)
347                 goto bad;
348             fkeyfile = *(++argv);
349         } else if (strcmp(*argv, "-addtrust") == 0) {
350             if (--argc < 1)
351                 goto bad;
352             if (!(objtmp = OBJ_txt2obj(*(++argv), 0))) {
353                 BIO_printf(bio_err, "Invalid trust object value %s\n", *argv);
354                 goto bad;
355             }
356             if (!trust)
357                 trust = sk_ASN1_OBJECT_new_null();
358             sk_ASN1_OBJECT_push(trust, objtmp);
359             trustout = 1;
360         } else if (strcmp(*argv, "-addreject") == 0) {
361             if (--argc < 1)
362                 goto bad;
363             if (!(objtmp = OBJ_txt2obj(*(++argv), 0))) {
364                 BIO_printf(bio_err,
365                            "Invalid reject object value %s\n", *argv);
366                 goto bad;
367             }
368             if (!reject)
369                 reject = sk_ASN1_OBJECT_new_null();
370             sk_ASN1_OBJECT_push(reject, objtmp);
371             trustout = 1;
372         } else if (strcmp(*argv, "-setalias") == 0) {
373             if (--argc < 1)
374                 goto bad;
375             alias = *(++argv);
376             trustout = 1;
377         } else if (strcmp(*argv, "-certopt") == 0) {
378             if (--argc < 1)
379                 goto bad;
380             if (!set_cert_ex(&certflag, *(++argv)))
381                 goto bad;
382         } else if (strcmp(*argv, "-nameopt") == 0) {
383             if (--argc < 1)
384                 goto bad;
385             if (!set_name_ex(&nmflag, *(++argv)))
386                 goto bad;
387         }
388 #ifndef OPENSSL_NO_ENGINE
389         else if (strcmp(*argv, "-engine") == 0) {
390             if (--argc < 1)
391                 goto bad;
392             engine = *(++argv);
393         }
394 #endif
395         else if (strcmp(*argv, "-C") == 0)
396             C = ++num;
397         else if (strcmp(*argv, "-email") == 0)
398             email = ++num;
399         else if (strcmp(*argv, "-ocsp_uri") == 0)
400             ocsp_uri = ++num;
401         else if (strcmp(*argv, "-serial") == 0)
402             serial = ++num;
403         else if (strcmp(*argv, "-next_serial") == 0)
404             next_serial = ++num;
405         else if (strcmp(*argv, "-modulus") == 0)
406             modulus = ++num;
407         else if (strcmp(*argv, "-pubkey") == 0)
408             pubkey = ++num;
409         else if (strcmp(*argv, "-x509toreq") == 0)
410             x509req = ++num;
411         else if (strcmp(*argv, "-text") == 0)
412             text = ++num;
413         else if (strcmp(*argv, "-hash") == 0
414                  || strcmp(*argv, "-subject_hash") == 0)
415             subject_hash = ++num;
416 #ifndef OPENSSL_NO_MD5
417         else if (strcmp(*argv, "-subject_hash_old") == 0)
418             subject_hash_old = ++num;
419 #endif
420         else if (strcmp(*argv, "-issuer_hash") == 0)
421             issuer_hash = ++num;
422 #ifndef OPENSSL_NO_MD5
423         else if (strcmp(*argv, "-issuer_hash_old") == 0)
424             issuer_hash_old = ++num;
425 #endif
426         else if (strcmp(*argv, "-subject") == 0)
427             subject = ++num;
428         else if (strcmp(*argv, "-issuer") == 0)
429             issuer = ++num;
430         else if (strcmp(*argv, "-fingerprint") == 0)
431             fingerprint = ++num;
432         else if (strcmp(*argv, "-dates") == 0) {
433             startdate = ++num;
434             enddate = ++num;
435         } else if (strcmp(*argv, "-purpose") == 0)
436             pprint = ++num;
437         else if (strcmp(*argv, "-startdate") == 0)
438             startdate = ++num;
439         else if (strcmp(*argv, "-enddate") == 0)
440             enddate = ++num;
441         else if (strcmp(*argv, "-checkend") == 0) {
442             if (--argc < 1)
443                 goto bad;
444             checkoffset = atoi(*(++argv));
445             checkend = 1;
446         } else if (strcmp(*argv, "-checkhost") == 0) {
447             if (--argc < 1)
448                 goto bad;
449             checkhost = *(++argv);
450         } else if (strcmp(*argv, "-checkemail") == 0) {
451             if (--argc < 1)
452                 goto bad;
453             checkemail = *(++argv);
454         } else if (strcmp(*argv, "-checkip") == 0) {
455             if (--argc < 1)
456                 goto bad;
457             checkip = *(++argv);
458         } else if (strcmp(*argv, "-noout") == 0)
459             noout = ++num;
460         else if (strcmp(*argv, "-trustout") == 0)
461             trustout = 1;
462         else if (strcmp(*argv, "-clrtrust") == 0)
463             clrtrust = ++num;
464         else if (strcmp(*argv, "-clrreject") == 0)
465             clrreject = ++num;
466         else if (strcmp(*argv, "-alias") == 0)
467             aliasout = ++num;
468         else if (strcmp(*argv, "-CAcreateserial") == 0)
469             CA_createserial = ++num;
470         else if (strcmp(*argv, "-clrext") == 0)
471             clrext = 1;
472         else if (strcmp(*argv, "-ocspid") == 0)
473             ocspid = ++num;
474         else if (strcmp(*argv, "-badsig") == 0)
475             badsig = 1;
476         else if ((md_alg = EVP_get_digestbyname(*argv + 1))) {
477             /* ok */
478             digest = md_alg;
479         } else {
480             BIO_printf(bio_err, "unknown option %s\n", *argv);
481             badops = 1;
482             break;
483         }
484         argc--;
485         argv++;
486     }
487
488     if (badops) {
489  bad:
490         for (pp = x509_usage; (*pp != NULL); pp++)
491             BIO_printf(bio_err, "%s", *pp);
492         goto end;
493     }
494 #ifndef OPENSSL_NO_ENGINE
495     e = setup_engine(bio_err, engine, 0);
496 #endif
497
498     if (need_rand)
499         app_RAND_load_file(NULL, bio_err, 0);
500
501     ERR_load_crypto_strings();
502
503     if (!app_passwd(bio_err, passargin, NULL, &passin, NULL)) {
504         BIO_printf(bio_err, "Error getting password\n");
505         goto end;
506     }
507
508     if (!X509_STORE_set_default_paths(ctx)) {
509         ERR_print_errors(bio_err);
510         goto end;
511     }
512
513     if (fkeyfile) {
514         fkey = load_pubkey(bio_err, fkeyfile, keyformat, 0,
515                            NULL, e, "Forced key");
516         if (fkey == NULL)
517             goto end;
518     }
519
520     if ((CAkeyfile == NULL) && (CA_flag) && (CAformat == FORMAT_PEM)) {
521         CAkeyfile = CAfile;
522     } else if ((CA_flag) && (CAkeyfile == NULL)) {
523         BIO_printf(bio_err,
524                    "need to specify a CAkey if using the CA command\n");
525         goto end;
526     }
527
528     if (extfile) {
529         long errorline = -1;
530         X509V3_CTX ctx2;
531         extconf = NCONF_new(NULL);
532         if (!NCONF_load(extconf, extfile, &errorline)) {
533             if (errorline <= 0)
534                 BIO_printf(bio_err,
535                            "error loading the config file '%s'\n", extfile);
536             else
537                 BIO_printf(bio_err,
538                            "error on line %ld of config file '%s'\n",
539                            errorline, extfile);
540             goto end;
541         }
542         if (!extsect) {
543             extsect = NCONF_get_string(extconf, "default", "extensions");
544             if (!extsect) {
545                 ERR_clear_error();
546                 extsect = "default";
547             }
548         }
549         X509V3_set_ctx_test(&ctx2);
550         X509V3_set_nconf(&ctx2, extconf);
551         if (!X509V3_EXT_add_nconf(extconf, &ctx2, extsect, NULL)) {
552             BIO_printf(bio_err,
553                        "Error Loading extension section %s\n", extsect);
554             ERR_print_errors(bio_err);
555             goto end;
556         }
557     }
558
559     if (reqfile) {
560         EVP_PKEY *pkey;
561         BIO *in;
562
563         if (!sign_flag && !CA_flag) {
564             BIO_printf(bio_err, "We need a private key to sign with\n");
565             goto end;
566         }
567         in = BIO_new(BIO_s_file());
568         if (in == NULL) {
569             ERR_print_errors(bio_err);
570             goto end;
571         }
572
573         if (infile == NULL)
574             BIO_set_fp(in, stdin, BIO_NOCLOSE | BIO_FP_TEXT);
575         else {
576             if (BIO_read_filename(in, infile) <= 0) {
577                 perror(infile);
578                 BIO_free(in);
579                 goto end;
580             }
581         }
582         req = PEM_read_bio_X509_REQ(in, NULL, NULL, NULL);
583         BIO_free(in);
584
585         if (req == NULL) {
586             ERR_print_errors(bio_err);
587             goto end;
588         }
589
590         if ((req->req_info == NULL) ||
591             (req->req_info->pubkey == NULL) ||
592             (req->req_info->pubkey->public_key == NULL) ||
593             (req->req_info->pubkey->public_key->data == NULL)) {
594             BIO_printf(bio_err,
595                        "The certificate request appears to corrupted\n");
596             BIO_printf(bio_err, "It does not contain a public key\n");
597             goto end;
598         }
599         if ((pkey = X509_REQ_get_pubkey(req)) == NULL) {
600             BIO_printf(bio_err, "error unpacking public key\n");
601             goto end;
602         }
603         i = X509_REQ_verify(req, pkey);
604         EVP_PKEY_free(pkey);
605         if (i < 0) {
606             BIO_printf(bio_err, "Signature verification error\n");
607             ERR_print_errors(bio_err);
608             goto end;
609         }
610         if (i == 0) {
611             BIO_printf(bio_err,
612                        "Signature did not match the certificate request\n");
613             goto end;
614         } else
615             BIO_printf(bio_err, "Signature ok\n");
616
617         print_name(bio_err, "subject=", X509_REQ_get_subject_name(req),
618                    nmflag);
619
620         if ((x = X509_new()) == NULL)
621             goto end;
622
623         if (sno == NULL) {
624             sno = ASN1_INTEGER_new();
625             if (!sno || !rand_serial(NULL, sno))
626                 goto end;
627             if (!X509_set_serialNumber(x, sno))
628                 goto end;
629             ASN1_INTEGER_free(sno);
630             sno = NULL;
631         } else if (!X509_set_serialNumber(x, sno))
632             goto end;
633
634         if (!X509_set_issuer_name(x, req->req_info->subject))
635             goto end;
636         if (!X509_set_subject_name(x, req->req_info->subject))
637             goto end;
638
639         X509_gmtime_adj(X509_get_notBefore(x), 0);
640         X509_time_adj_ex(X509_get_notAfter(x), days, 0, NULL);
641         if (fkey)
642             X509_set_pubkey(x, fkey);
643         else {
644             pkey = X509_REQ_get_pubkey(req);
645             X509_set_pubkey(x, pkey);
646             EVP_PKEY_free(pkey);
647         }
648     } else
649         x = load_cert(bio_err, infile, informat, NULL, e, "Certificate");
650
651     if (x == NULL)
652         goto end;
653     if (CA_flag) {
654         xca = load_cert(bio_err, CAfile, CAformat, NULL, e, "CA Certificate");
655         if (xca == NULL)
656             goto end;
657     }
658
659     if (!noout || text || next_serial) {
660         OBJ_create("2.99999.3", "SET.ex3", "SET x509v3 extension 3");
661
662         out = BIO_new(BIO_s_file());
663         if (out == NULL) {
664             ERR_print_errors(bio_err);
665             goto end;
666         }
667         if (outfile == NULL) {
668             BIO_set_fp(out, stdout, BIO_NOCLOSE);
669 #ifdef OPENSSL_SYS_VMS
670             {
671                 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
672                 out = BIO_push(tmpbio, out);
673             }
674 #endif
675         } else {
676             if (BIO_write_filename(out, outfile) <= 0) {
677                 perror(outfile);
678                 goto end;
679             }
680         }
681     }
682
683     if (alias)
684         X509_alias_set1(x, (unsigned char *)alias, -1);
685
686     if (clrtrust)
687         X509_trust_clear(x);
688     if (clrreject)
689         X509_reject_clear(x);
690
691     if (trust) {
692         for (i = 0; i < sk_ASN1_OBJECT_num(trust); i++) {
693             objtmp = sk_ASN1_OBJECT_value(trust, i);
694             X509_add1_trust_object(x, objtmp);
695         }
696     }
697
698     if (reject) {
699         for (i = 0; i < sk_ASN1_OBJECT_num(reject); i++) {
700             objtmp = sk_ASN1_OBJECT_value(reject, i);
701             X509_add1_reject_object(x, objtmp);
702         }
703     }
704
705     if (num) {
706         for (i = 1; i <= num; i++) {
707             if (issuer == i) {
708                 print_name(STDout, "issuer= ",
709                            X509_get_issuer_name(x), nmflag);
710             } else if (subject == i) {
711                 print_name(STDout, "subject= ",
712                            X509_get_subject_name(x), nmflag);
713             } else if (serial == i) {
714                 BIO_printf(STDout, "serial=");
715                 i2a_ASN1_INTEGER(STDout, X509_get_serialNumber(x));
716                 BIO_printf(STDout, "\n");
717             } else if (next_serial == i) {
718                 BIGNUM *bnser;
719                 ASN1_INTEGER *ser;
720                 ser = X509_get_serialNumber(x);
721                 bnser = ASN1_INTEGER_to_BN(ser, NULL);
722                 if (!bnser)
723                     goto end;
724                 if (!BN_add_word(bnser, 1))
725                     goto end;
726                 ser = BN_to_ASN1_INTEGER(bnser, NULL);
727                 if (!ser)
728                     goto end;
729                 BN_free(bnser);
730                 i2a_ASN1_INTEGER(out, ser);
731                 ASN1_INTEGER_free(ser);
732                 BIO_puts(out, "\n");
733             } else if ((email == i) || (ocsp_uri == i)) {
734                 int j;
735                 STACK_OF(OPENSSL_STRING) *emlst;
736                 if (email == i)
737                     emlst = X509_get1_email(x);
738                 else
739                     emlst = X509_get1_ocsp(x);
740                 for (j = 0; j < sk_OPENSSL_STRING_num(emlst); j++)
741                     BIO_printf(STDout, "%s\n",
742                                sk_OPENSSL_STRING_value(emlst, j));
743                 X509_email_free(emlst);
744             } else if (aliasout == i) {
745                 unsigned char *alstr;
746                 alstr = X509_alias_get0(x, NULL);
747                 if (alstr)
748                     BIO_printf(STDout, "%s\n", alstr);
749                 else
750                     BIO_puts(STDout, "<No Alias>\n");
751             } else if (subject_hash == i) {
752                 BIO_printf(STDout, "%08lx\n", X509_subject_name_hash(x));
753             }
754 #ifndef OPENSSL_NO_MD5
755             else if (subject_hash_old == i) {
756                 BIO_printf(STDout, "%08lx\n", X509_subject_name_hash_old(x));
757             }
758 #endif
759             else if (issuer_hash == i) {
760                 BIO_printf(STDout, "%08lx\n", X509_issuer_name_hash(x));
761             }
762 #ifndef OPENSSL_NO_MD5
763             else if (issuer_hash_old == i) {
764                 BIO_printf(STDout, "%08lx\n", X509_issuer_name_hash_old(x));
765             }
766 #endif
767             else if (pprint == i) {
768                 X509_PURPOSE *ptmp;
769                 int j;
770                 BIO_printf(STDout, "Certificate purposes:\n");
771                 for (j = 0; j < X509_PURPOSE_get_count(); j++) {
772                     ptmp = X509_PURPOSE_get0(j);
773                     purpose_print(STDout, x, ptmp);
774                 }
775             } else if (modulus == i) {
776                 EVP_PKEY *pkey;
777
778                 pkey = X509_get_pubkey(x);
779                 if (pkey == NULL) {
780                     BIO_printf(bio_err, "Modulus=unavailable\n");
781                     ERR_print_errors(bio_err);
782                     goto end;
783                 }
784                 BIO_printf(STDout, "Modulus=");
785 #ifndef OPENSSL_NO_RSA
786                 if (pkey->type == EVP_PKEY_RSA)
787                     BN_print(STDout, pkey->pkey.rsa->n);
788                 else
789 #endif
790 #ifndef OPENSSL_NO_DSA
791                 if (pkey->type == EVP_PKEY_DSA)
792                     BN_print(STDout, pkey->pkey.dsa->pub_key);
793                 else
794 #endif
795                     BIO_printf(STDout, "Wrong Algorithm type");
796                 BIO_printf(STDout, "\n");
797                 EVP_PKEY_free(pkey);
798             } else if (pubkey == i) {
799                 EVP_PKEY *pkey;
800
801                 pkey = X509_get_pubkey(x);
802                 if (pkey == NULL) {
803                     BIO_printf(bio_err, "Error getting public key\n");
804                     ERR_print_errors(bio_err);
805                     goto end;
806                 }
807                 PEM_write_bio_PUBKEY(STDout, pkey);
808                 EVP_PKEY_free(pkey);
809             } else if (C == i) {
810                 unsigned char *d;
811                 char *m;
812                 int y, z;
813
814                 X509_NAME_oneline(X509_get_subject_name(x), buf, sizeof buf);
815                 BIO_printf(STDout, "/* subject:%s */\n", buf);
816                 m = X509_NAME_oneline(X509_get_issuer_name(x), buf,
817                                       sizeof buf);
818                 BIO_printf(STDout, "/* issuer :%s */\n", buf);
819
820                 z = i2d_X509(x, NULL);
821                 m = OPENSSL_malloc(z);
822
823                 d = (unsigned char *)m;
824                 z = i2d_X509_NAME(X509_get_subject_name(x), &d);
825                 BIO_printf(STDout, "unsigned char XXX_subject_name[%d]={\n",
826                            z);
827                 d = (unsigned char *)m;
828                 for (y = 0; y < z; y++) {
829                     BIO_printf(STDout, "0x%02X,", d[y]);
830                     if ((y & 0x0f) == 0x0f)
831                         BIO_printf(STDout, "\n");
832                 }
833                 if (y % 16 != 0)
834                     BIO_printf(STDout, "\n");
835                 BIO_printf(STDout, "};\n");
836
837                 z = i2d_X509_PUBKEY(X509_get_X509_PUBKEY(x), &d);
838                 BIO_printf(STDout, "unsigned char XXX_public_key[%d]={\n", z);
839                 d = (unsigned char *)m;
840                 for (y = 0; y < z; y++) {
841                     BIO_printf(STDout, "0x%02X,", d[y]);
842                     if ((y & 0x0f) == 0x0f)
843                         BIO_printf(STDout, "\n");
844                 }
845                 if (y % 16 != 0)
846                     BIO_printf(STDout, "\n");
847                 BIO_printf(STDout, "};\n");
848
849                 z = i2d_X509(x, &d);
850                 BIO_printf(STDout, "unsigned char XXX_certificate[%d]={\n",
851                            z);
852                 d = (unsigned char *)m;
853                 for (y = 0; y < z; y++) {
854                     BIO_printf(STDout, "0x%02X,", d[y]);
855                     if ((y & 0x0f) == 0x0f)
856                         BIO_printf(STDout, "\n");
857                 }
858                 if (y % 16 != 0)
859                     BIO_printf(STDout, "\n");
860                 BIO_printf(STDout, "};\n");
861
862                 OPENSSL_free(m);
863             } else if (text == i) {
864                 X509_print_ex(STDout, x, nmflag, certflag);
865             } else if (startdate == i) {
866                 BIO_puts(STDout, "notBefore=");
867                 ASN1_TIME_print(STDout, X509_get_notBefore(x));
868                 BIO_puts(STDout, "\n");
869             } else if (enddate == i) {
870                 BIO_puts(STDout, "notAfter=");
871                 ASN1_TIME_print(STDout, X509_get_notAfter(x));
872                 BIO_puts(STDout, "\n");
873             } else if (fingerprint == i) {
874                 int j;
875                 unsigned int n;
876                 unsigned char md[EVP_MAX_MD_SIZE];
877                 const EVP_MD *fdig = digest;
878
879                 if (!fdig)
880                     fdig = EVP_sha1();
881
882                 if (!X509_digest(x, fdig, md, &n)) {
883                     BIO_printf(bio_err, "out of memory\n");
884                     goto end;
885                 }
886                 BIO_printf(STDout, "%s Fingerprint=",
887                            OBJ_nid2sn(EVP_MD_type(fdig)));
888                 for (j = 0; j < (int)n; j++) {
889                     BIO_printf(STDout, "%02X%c", md[j], (j + 1 == (int)n)
890                                ? '\n' : ':');
891                 }
892             }
893
894             /* should be in the library */
895             else if ((sign_flag == i) && (x509req == 0)) {
896                 BIO_printf(bio_err, "Getting Private key\n");
897                 if (Upkey == NULL) {
898                     Upkey = load_key(bio_err,
899                                      keyfile, keyformat, 0,
900                                      passin, e, "Private key");
901                     if (Upkey == NULL)
902                         goto end;
903                 }
904
905                 assert(need_rand);
906                 if (!sign(x, Upkey, days, clrext, digest, extconf, extsect))
907                     goto end;
908             } else if (CA_flag == i) {
909                 BIO_printf(bio_err, "Getting CA Private Key\n");
910                 if (CAkeyfile != NULL) {
911                     CApkey = load_key(bio_err,
912                                       CAkeyfile, CAkeyformat,
913                                       0, passin, e, "CA Private Key");
914                     if (CApkey == NULL)
915                         goto end;
916                 }
917
918                 assert(need_rand);
919                 if (!x509_certify(ctx, CAfile, digest, x, xca,
920                                   CApkey, sigopts,
921                                   CAserial, CA_createserial, days, clrext,
922                                   extconf, extsect, sno))
923                     goto end;
924             } else if (x509req == i) {
925                 EVP_PKEY *pk;
926
927                 BIO_printf(bio_err, "Getting request Private Key\n");
928                 if (keyfile == NULL) {
929                     BIO_printf(bio_err, "no request key file specified\n");
930                     goto end;
931                 } else {
932                     pk = load_key(bio_err,
933                                   keyfile, keyformat, 0,
934                                   passin, e, "request key");
935                     if (pk == NULL)
936                         goto end;
937                 }
938
939                 BIO_printf(bio_err, "Generating certificate request\n");
940
941                 rq = X509_to_X509_REQ(x, pk, digest);
942                 EVP_PKEY_free(pk);
943                 if (rq == NULL) {
944                     ERR_print_errors(bio_err);
945                     goto end;
946                 }
947                 if (!noout) {
948                     X509_REQ_print(out, rq);
949                     PEM_write_bio_X509_REQ(out, rq);
950                 }
951                 noout = 1;
952             } else if (ocspid == i) {
953                 X509_ocspid_print(out, x);
954             }
955         }
956     }
957
958     if (checkend) {
959         time_t tcheck = time(NULL) + checkoffset;
960
961         if (X509_cmp_time(X509_get_notAfter(x), &tcheck) < 0) {
962             BIO_printf(out, "Certificate will expire\n");
963             ret = 1;
964         } else {
965             BIO_printf(out, "Certificate will not expire\n");
966             ret = 0;
967         }
968         goto end;
969     }
970
971     print_cert_checks(STDout, x, checkhost, checkemail, checkip);
972
973     if (noout) {
974         ret = 0;
975         goto end;
976     }
977
978     if (badsig)
979         x->signature->data[x->signature->length - 1] ^= 0x1;
980
981     if (outformat == FORMAT_ASN1)
982         i = i2d_X509_bio(out, x);
983     else if (outformat == FORMAT_PEM) {
984         if (trustout)
985             i = PEM_write_bio_X509_AUX(out, x);
986         else
987             i = PEM_write_bio_X509(out, x);
988     } else if (outformat == FORMAT_NETSCAPE) {
989         NETSCAPE_X509 nx;
990         ASN1_OCTET_STRING hdr;
991
992         hdr.data = (unsigned char *)NETSCAPE_CERT_HDR;
993         hdr.length = strlen(NETSCAPE_CERT_HDR);
994         nx.header = &hdr;
995         nx.cert = x;
996
997         i = ASN1_item_i2d_bio(ASN1_ITEM_rptr(NETSCAPE_X509), out, &nx);
998     } else {
999         BIO_printf(bio_err, "bad output format specified for outfile\n");
1000         goto end;
1001     }
1002     if (!i) {
1003         BIO_printf(bio_err, "unable to write certificate\n");
1004         ERR_print_errors(bio_err);
1005         goto end;
1006     }
1007     ret = 0;
1008  end:
1009     if (need_rand)
1010         app_RAND_write_file(NULL, bio_err);
1011     OBJ_cleanup();
1012     NCONF_free(extconf);
1013     BIO_free_all(out);
1014     BIO_free_all(STDout);
1015     X509_STORE_free(ctx);
1016     X509_REQ_free(req);
1017     X509_free(x);
1018     X509_free(xca);
1019     EVP_PKEY_free(Upkey);
1020     EVP_PKEY_free(CApkey);
1021     EVP_PKEY_free(fkey);
1022     if (sigopts)
1023         sk_OPENSSL_STRING_free(sigopts);
1024     X509_REQ_free(rq);
1025     ASN1_INTEGER_free(sno);
1026     sk_ASN1_OBJECT_pop_free(trust, ASN1_OBJECT_free);
1027     sk_ASN1_OBJECT_pop_free(reject, ASN1_OBJECT_free);
1028     if (passin)
1029         OPENSSL_free(passin);
1030     apps_shutdown();
1031     OPENSSL_EXIT(ret);
1032 }
1033
1034 static ASN1_INTEGER *x509_load_serial(char *CAfile, char *serialfile,
1035                                       int create)
1036 {
1037     char *buf = NULL, *p;
1038     ASN1_INTEGER *bs = NULL;
1039     BIGNUM *serial = NULL;
1040     size_t len;
1041
1042     len = ((serialfile == NULL)
1043            ? (strlen(CAfile) + strlen(POSTFIX) + 1)
1044            : (strlen(serialfile))) + 1;
1045     buf = OPENSSL_malloc(len);
1046     if (buf == NULL) {
1047         BIO_printf(bio_err, "out of mem\n");
1048         goto end;
1049     }
1050     if (serialfile == NULL) {
1051         BUF_strlcpy(buf, CAfile, len);
1052         for (p = buf; *p; p++)
1053             if (*p == '.') {
1054                 *p = '\0';
1055                 break;
1056             }
1057         BUF_strlcat(buf, POSTFIX, len);
1058     } else
1059         BUF_strlcpy(buf, serialfile, len);
1060
1061     serial = load_serial(buf, create, NULL);
1062     if (serial == NULL)
1063         goto end;
1064
1065     if (!BN_add_word(serial, 1)) {
1066         BIO_printf(bio_err, "add_word failure\n");
1067         goto end;
1068     }
1069
1070     if (!save_serial(buf, NULL, serial, &bs))
1071         goto end;
1072
1073  end:
1074     if (buf)
1075         OPENSSL_free(buf);
1076     BN_free(serial);
1077     return bs;
1078 }
1079
1080 static int x509_certify(X509_STORE *ctx, char *CAfile, const EVP_MD *digest,
1081                         X509 *x, X509 *xca, EVP_PKEY *pkey,
1082                         STACK_OF(OPENSSL_STRING) *sigopts,
1083                         char *serialfile, int create,
1084                         int days, int clrext, CONF *conf, char *section,
1085                         ASN1_INTEGER *sno)
1086 {
1087     int ret = 0;
1088     ASN1_INTEGER *bs = NULL;
1089     X509_STORE_CTX xsc;
1090     EVP_PKEY *upkey;
1091
1092     upkey = X509_get_pubkey(xca);
1093     EVP_PKEY_copy_parameters(upkey, pkey);
1094     EVP_PKEY_free(upkey);
1095
1096     if (!X509_STORE_CTX_init(&xsc, ctx, x, NULL)) {
1097         BIO_printf(bio_err, "Error initialising X509 store\n");
1098         goto end;
1099     }
1100     if (sno)
1101         bs = sno;
1102     else if (!(bs = x509_load_serial(CAfile, serialfile, create)))
1103         goto end;
1104
1105 /*      if (!X509_STORE_add_cert(ctx,x)) goto end;*/
1106
1107     /*
1108      * NOTE: this certificate can/should be self signed, unless it was a
1109      * certificate request in which case it is not.
1110      */
1111     X509_STORE_CTX_set_cert(&xsc, x);
1112     X509_STORE_CTX_set_flags(&xsc, X509_V_FLAG_CHECK_SS_SIGNATURE);
1113     if (!reqfile && X509_verify_cert(&xsc) <= 0)
1114         goto end;
1115
1116     if (!X509_check_private_key(xca, pkey)) {
1117         BIO_printf(bio_err,
1118                    "CA certificate and CA private key do not match\n");
1119         goto end;
1120     }
1121
1122     if (!X509_set_issuer_name(x, X509_get_subject_name(xca)))
1123         goto end;
1124     if (!X509_set_serialNumber(x, bs))
1125         goto end;
1126
1127     if (X509_gmtime_adj(X509_get_notBefore(x), 0L) == NULL)
1128         goto end;
1129
1130     /* hardwired expired */
1131     if (X509_time_adj_ex(X509_get_notAfter(x), days, 0, NULL) == NULL)
1132         goto end;
1133
1134     if (clrext) {
1135         while (X509_get_ext_count(x) > 0)
1136             X509_delete_ext(x, 0);
1137     }
1138
1139     if (conf) {
1140         X509V3_CTX ctx2;
1141 #ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL
1142         X509_set_version(x, force_version);
1143 #else
1144         X509_set_version(x, 2); /* version 3 certificate */
1145 #endif
1146         X509V3_set_ctx(&ctx2, xca, x, NULL, NULL, 0);
1147         X509V3_set_nconf(&ctx2, conf);
1148         if (!X509V3_EXT_add_nconf(conf, &ctx2, section, x))
1149             goto end;
1150     }
1151
1152     if (!do_X509_sign(bio_err, x, pkey, digest, sigopts))
1153         goto end;
1154     ret = 1;
1155  end:
1156     X509_STORE_CTX_cleanup(&xsc);
1157     if (!ret)
1158         ERR_print_errors(bio_err);
1159     if (!sno)
1160         ASN1_INTEGER_free(bs);
1161     return ret;
1162 }
1163
1164 static int callb(int ok, X509_STORE_CTX *ctx)
1165 {
1166     int err;
1167     X509 *err_cert;
1168
1169     /*
1170      * it is ok to use a self signed certificate This case will catch both
1171      * the initial ok == 0 and the final ok == 1 calls to this function
1172      */
1173     err = X509_STORE_CTX_get_error(ctx);
1174     if (err == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT)
1175         return 1;
1176
1177     /*
1178      * BAD we should have gotten an error.  Normally if everything worked
1179      * X509_STORE_CTX_get_error(ctx) will still be set to
1180      * DEPTH_ZERO_SELF_....
1181      */
1182     if (ok) {
1183         BIO_printf(bio_err,
1184                    "error with certificate to be certified - should be self signed\n");
1185         return 0;
1186     } else {
1187         err_cert = X509_STORE_CTX_get_current_cert(ctx);
1188         print_name(bio_err, NULL, X509_get_subject_name(err_cert), 0);
1189         BIO_printf(bio_err,
1190                    "error with certificate - error %d at depth %d\n%s\n", err,
1191                    X509_STORE_CTX_get_error_depth(ctx),
1192                    X509_verify_cert_error_string(err));
1193         return 1;
1194     }
1195 }
1196
1197 /* self sign */
1198 static int sign(X509 *x, EVP_PKEY *pkey, int days, int clrext,
1199                 const EVP_MD *digest, CONF *conf, char *section)
1200 {
1201
1202     EVP_PKEY *pktmp;
1203
1204     pktmp = X509_get_pubkey(x);
1205     EVP_PKEY_copy_parameters(pktmp, pkey);
1206     EVP_PKEY_save_parameters(pktmp, 1);
1207     EVP_PKEY_free(pktmp);
1208
1209     if (!X509_set_issuer_name(x, X509_get_subject_name(x)))
1210         goto err;
1211     if (X509_gmtime_adj(X509_get_notBefore(x), 0) == NULL)
1212         goto err;
1213
1214     /* Lets just make it 12:00am GMT, Jan 1 1970 */
1215     /* memcpy(x->cert_info->validity->notBefore,"700101120000Z",13); */
1216     /* 28 days to be certified */
1217
1218     if (X509_gmtime_adj(X509_get_notAfter(x), (long)60 * 60 * 24 * days) ==
1219         NULL)
1220         goto err;
1221
1222     if (!X509_set_pubkey(x, pkey))
1223         goto err;
1224     if (clrext) {
1225         while (X509_get_ext_count(x) > 0)
1226             X509_delete_ext(x, 0);
1227     }
1228     if (conf) {
1229         X509V3_CTX ctx;
1230 #ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL
1231         X509_set_version(x, force_version);
1232 #else
1233         X509_set_version(x, 2); /* version 3 certificate */
1234 #endif
1235         X509V3_set_ctx(&ctx, x, x, NULL, NULL, 0);
1236         X509V3_set_nconf(&ctx, conf);
1237         if (!X509V3_EXT_add_nconf(conf, &ctx, section, x))
1238             goto err;
1239     }
1240     if (!X509_sign(x, pkey, digest))
1241         goto err;
1242     return 1;
1243  err:
1244     ERR_print_errors(bio_err);
1245     return 0;
1246 }
1247
1248 static int purpose_print(BIO *bio, X509 *cert, X509_PURPOSE *pt)
1249 {
1250     int id, i, idret;
1251     char *pname;
1252     id = X509_PURPOSE_get_id(pt);
1253     pname = X509_PURPOSE_get0_name(pt);
1254     for (i = 0; i < 2; i++) {
1255         idret = X509_check_purpose(cert, id, i);
1256         BIO_printf(bio, "%s%s : ", pname, i ? " CA" : "");
1257         if (idret == 1)
1258             BIO_printf(bio, "Yes\n");
1259         else if (idret == 0)
1260             BIO_printf(bio, "No\n");
1261         else
1262             BIO_printf(bio, "Yes (WARNING code=%d)\n", idret);
1263     }
1264     return 1;
1265 }