Merge from the ASN1 branch of new ASN1 code
[openssl.git] / apps / req.c
1 /* apps/req.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 <stdio.h>
60 #include <stdlib.h>
61 #include <time.h>
62 #include <string.h>
63 #ifdef NO_STDIO
64 #define APPS_WIN16
65 #endif
66 #include "apps.h"
67 #include <openssl/bio.h>
68 #include <openssl/evp.h>
69 #include <openssl/conf.h>
70 #include <openssl/err.h>
71 #include <openssl/asn1.h>
72 #include <openssl/x509.h>
73 #include <openssl/x509v3.h>
74 #include <openssl/objects.h>
75 #include <openssl/pem.h>
76 #include <openssl/engine.h>
77
78 #define SECTION         "req"
79
80 #define BITS            "default_bits"
81 #define KEYFILE         "default_keyfile"
82 #define PROMPT          "prompt"
83 #define DISTINGUISHED_NAME      "distinguished_name"
84 #define ATTRIBUTES      "attributes"
85 #define V3_EXTENSIONS   "x509_extensions"
86 #define REQ_EXTENSIONS  "req_extensions"
87 #define STRING_MASK     "string_mask"
88
89 #define DEFAULT_KEY_LENGTH      512
90 #define MIN_KEY_LENGTH          384
91
92 #undef PROG
93 #define PROG    req_main
94
95 /* -inform arg  - input format - default PEM (DER or PEM)
96  * -outform arg - output format - default PEM
97  * -in arg      - input file - default stdin
98  * -out arg     - output file - default stdout
99  * -verify      - check request signature
100  * -noout       - don't print stuff out.
101  * -text        - print out human readable text.
102  * -nodes       - no des encryption
103  * -config file - Load configuration file.
104  * -key file    - make a request using key in file (or use it for verification).
105  * -keyform arg - key file format.
106  * -rand file(s) - load the file(s) into the PRNG.
107  * -newkey      - make a key and a request.
108  * -modulus     - print RSA modulus.
109  * -x509        - output a self signed X509 structure instead.
110  * -asn1-kludge - output new certificate request in a format that some CA's
111  *                require.  This format is wrong
112  */
113
114 static int make_REQ(X509_REQ *req,EVP_PKEY *pkey,int attribs);
115 static int prompt_info(X509_REQ *req,
116                 STACK_OF(CONF_VALUE) *dn_sk, char *dn_sect,
117                 STACK_OF(CONF_VALUE) *attr_sk, char *attr_sect, int attribs);
118 static int auto_info(X509_REQ *req, STACK_OF(CONF_VALUE) *sk,
119                                 STACK_OF(CONF_VALUE) *attr, int attribs);
120 static int add_attribute_object(X509_REQ *req, char *text,
121                                 char *def, char *value, int nid, int min,
122                                 int max);
123 static int add_DN_object(X509_NAME *n, char *text, char *def, char *value,
124         int nid,int min,int max);
125 #ifndef NO_RSA
126 static void MS_CALLBACK req_cb(int p,int n,void *arg);
127 #endif
128 static int req_check_len(int len,int min,int max);
129 static int check_end(char *str, char *end);
130 #ifndef MONOLITH
131 static char *default_config_file=NULL;
132 static LHASH *config=NULL;
133 #endif
134 static LHASH *req_conf=NULL;
135
136 #define TYPE_RSA        1
137 #define TYPE_DSA        2
138 #define TYPE_DH         3
139
140 int MAIN(int, char **);
141
142 int MAIN(int argc, char **argv)
143         {
144         ENGINE *e = NULL;
145 #ifndef NO_DSA
146         DSA *dsa_params=NULL;
147 #endif
148         unsigned long nmflag = 0;
149         int ex=1,x509=0,days=30;
150         X509 *x509ss=NULL;
151         X509_REQ *req=NULL;
152         EVP_PKEY *pkey=NULL;
153         int i,badops=0,newreq=0,newkey= -1,pkey_type=0;
154         BIO *in=NULL,*out=NULL;
155         int informat,outformat,verify=0,noout=0,text=0,keyform=FORMAT_PEM;
156         int nodes=0,kludge=0,newhdr=0,subject=0;
157         char *infile,*outfile,*prog,*keyfile=NULL,*template=NULL,*keyout=NULL;
158         char *engine=NULL;
159         char *extensions = NULL;
160         char *req_exts = NULL;
161         EVP_CIPHER *cipher=NULL;
162         int modulus=0;
163         char *inrand=NULL;
164         char *passargin = NULL, *passargout = NULL;
165         char *passin = NULL, *passout = NULL;
166         char *p;
167         const EVP_MD *md_alg=NULL,*digest=EVP_md5();
168 #ifndef MONOLITH
169         MS_STATIC char config_name[256];
170 #endif
171
172         req_conf = NULL;
173 #ifndef NO_DES
174         cipher=EVP_des_ede3_cbc();
175 #endif
176         apps_startup();
177
178         if (bio_err == NULL)
179                 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
180                         BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
181
182         infile=NULL;
183         outfile=NULL;
184         informat=FORMAT_PEM;
185         outformat=FORMAT_PEM;
186
187         prog=argv[0];
188         argc--;
189         argv++;
190         while (argc >= 1)
191                 {
192                 if      (strcmp(*argv,"-inform") == 0)
193                         {
194                         if (--argc < 1) goto bad;
195                         informat=str2fmt(*(++argv));
196                         }
197                 else if (strcmp(*argv,"-outform") == 0)
198                         {
199                         if (--argc < 1) goto bad;
200                         outformat=str2fmt(*(++argv));
201                         }
202                 else if (strcmp(*argv,"-engine") == 0)
203                         {
204                         if (--argc < 1) goto bad;
205                         engine= *(++argv);
206                         }
207                 else if (strcmp(*argv,"-key") == 0)
208                         {
209                         if (--argc < 1) goto bad;
210                         keyfile= *(++argv);
211                         }
212                 else if (strcmp(*argv,"-new") == 0)
213                         {
214                         pkey_type=TYPE_RSA;
215                         newreq=1;
216                         }
217                 else if (strcmp(*argv,"-config") == 0)
218                         {       
219                         if (--argc < 1) goto bad;
220                         template= *(++argv);
221                         }
222                 else if (strcmp(*argv,"-keyform") == 0)
223                         {
224                         if (--argc < 1) goto bad;
225                         keyform=str2fmt(*(++argv));
226                         }
227                 else if (strcmp(*argv,"-in") == 0)
228                         {
229                         if (--argc < 1) goto bad;
230                         infile= *(++argv);
231                         }
232                 else if (strcmp(*argv,"-out") == 0)
233                         {
234                         if (--argc < 1) goto bad;
235                         outfile= *(++argv);
236                         }
237                 else if (strcmp(*argv,"-keyout") == 0)
238                         {
239                         if (--argc < 1) goto bad;
240                         keyout= *(++argv);
241                         }
242                 else if (strcmp(*argv,"-passin") == 0)
243                         {
244                         if (--argc < 1) goto bad;
245                         passargin= *(++argv);
246                         }
247                 else if (strcmp(*argv,"-passout") == 0)
248                         {
249                         if (--argc < 1) goto bad;
250                         passargout= *(++argv);
251                         }
252                 else if (strcmp(*argv,"-rand") == 0)
253                         {
254                         if (--argc < 1) goto bad;
255                         inrand= *(++argv);
256                         }
257                 else if (strcmp(*argv,"-newkey") == 0)
258                         {
259                         int is_numeric;
260
261                         if (--argc < 1) goto bad;
262                         p= *(++argv);
263                         is_numeric = p[0] >= '0' && p[0] <= '9';
264                         if (strncmp("rsa:",p,4) == 0 || is_numeric)
265                                 {
266                                 pkey_type=TYPE_RSA;
267                                 if(!is_numeric)
268                                     p+=4;
269                                 newkey= atoi(p);
270                                 }
271                         else
272 #ifndef NO_DSA
273                                 if (strncmp("dsa:",p,4) == 0)
274                                 {
275                                 X509 *xtmp=NULL;
276                                 EVP_PKEY *dtmp;
277
278                                 pkey_type=TYPE_DSA;
279                                 p+=4;
280                                 if ((in=BIO_new_file(p,"r")) == NULL)
281                                         {
282                                         perror(p);
283                                         goto end;
284                                         }
285                                 if ((dsa_params=PEM_read_bio_DSAparams(in,NULL,NULL,NULL)) == NULL)
286                                         {
287                                         ERR_clear_error();
288                                         (void)BIO_reset(in);
289                                         if ((xtmp=PEM_read_bio_X509(in,NULL,NULL,NULL)) == NULL)
290                                                 {
291                                                 BIO_printf(bio_err,"unable to load DSA parameters from file\n");
292                                                 goto end;
293                                                 }
294
295                                         dtmp=X509_get_pubkey(xtmp);
296                                         if (dtmp->type == EVP_PKEY_DSA)
297                                                 dsa_params=DSAparams_dup(dtmp->pkey.dsa);
298                                         EVP_PKEY_free(dtmp);
299                                         X509_free(xtmp);
300                                         if (dsa_params == NULL)
301                                                 {
302                                                 BIO_printf(bio_err,"Certificate does not contain DSA parameters\n");
303                                                 goto end;
304                                                 }
305                                         }
306                                 BIO_free(in);
307                                 newkey=BN_num_bits(dsa_params->p);
308                                 in=NULL;
309                                 }
310                         else 
311 #endif
312 #ifndef NO_DH
313                                 if (strncmp("dh:",p,4) == 0)
314                                 {
315                                 pkey_type=TYPE_DH;
316                                 p+=3;
317                                 }
318                         else
319 #endif
320                                 pkey_type=TYPE_RSA;
321
322                         newreq=1;
323                         }
324                 else if (strcmp(*argv,"-newhdr") == 0)
325                         newhdr=1;
326                 else if (strcmp(*argv,"-modulus") == 0)
327                         modulus=1;
328                 else if (strcmp(*argv,"-verify") == 0)
329                         verify=1;
330                 else if (strcmp(*argv,"-nodes") == 0)
331                         nodes=1;
332                 else if (strcmp(*argv,"-noout") == 0)
333                         noout=1;
334                 else if (strcmp(*argv,"-nameopt") == 0)
335                         {
336                         if (--argc < 1) goto bad;
337                         if (!set_name_ex(&nmflag, *(++argv))) goto bad;
338                         }
339                 else if (strcmp(*argv,"-subject") == 0)
340                         subject=1;
341                 else if (strcmp(*argv,"-text") == 0)
342                         text=1;
343                 else if (strcmp(*argv,"-x509") == 0)
344                         x509=1;
345                 else if (strcmp(*argv,"-asn1-kludge") == 0)
346                         kludge=1;
347                 else if (strcmp(*argv,"-no-asn1-kludge") == 0)
348                         kludge=0;
349                 else if (strcmp(*argv,"-days") == 0)
350                         {
351                         if (--argc < 1) goto bad;
352                         days= atoi(*(++argv));
353                         if (days == 0) days=30;
354                         }
355                 else if ((md_alg=EVP_get_digestbyname(&((*argv)[1]))) != NULL)
356                         {
357                         /* ok */
358                         digest=md_alg;
359                         }
360                 else if (strcmp(*argv,"-extensions") == 0)
361                         {
362                         if (--argc < 1) goto bad;
363                         extensions = *(++argv);
364                         }
365                 else if (strcmp(*argv,"-reqexts") == 0)
366                         {
367                         if (--argc < 1) goto bad;
368                         req_exts = *(++argv);
369                         }
370                 else
371                         {
372                         BIO_printf(bio_err,"unknown option %s\n",*argv);
373                         badops=1;
374                         break;
375                         }
376                 argc--;
377                 argv++;
378                 }
379
380         if (badops)
381                 {
382 bad:
383                 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
384                 BIO_printf(bio_err,"where options  are\n");
385                 BIO_printf(bio_err," -inform arg    input format - DER or PEM\n");
386                 BIO_printf(bio_err," -outform arg   output format - DER or PEM\n");
387                 BIO_printf(bio_err," -in arg        input file\n");
388                 BIO_printf(bio_err," -out arg       output file\n");
389                 BIO_printf(bio_err," -text          text form of request\n");
390                 BIO_printf(bio_err," -noout         do not output REQ\n");
391                 BIO_printf(bio_err," -verify        verify signature on REQ\n");
392                 BIO_printf(bio_err," -modulus       RSA modulus\n");
393                 BIO_printf(bio_err," -nodes         don't encrypt the output key\n");
394                 BIO_printf(bio_err," -engine e      use engine e, possibly a hardware device.\n");
395                 BIO_printf(bio_err," -key file  use the private key contained in file\n");
396                 BIO_printf(bio_err," -keyform arg   key file format\n");
397                 BIO_printf(bio_err," -keyout arg    file to send the key to\n");
398                 BIO_printf(bio_err," -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
399                 BIO_printf(bio_err,"                load the file (or the files in the directory) into\n");
400                 BIO_printf(bio_err,"                the random number generator\n");
401                 BIO_printf(bio_err," -newkey rsa:bits generate a new RSA key of 'bits' in size\n");
402                 BIO_printf(bio_err," -newkey dsa:file generate a new DSA key, parameters taken from CA in 'file'\n");
403
404                 BIO_printf(bio_err," -[digest]      Digest to sign with (md5, sha1, md2, mdc2)\n");
405                 BIO_printf(bio_err," -config file   request template file.\n");
406                 BIO_printf(bio_err," -new           new request.\n");
407                 BIO_printf(bio_err," -x509          output a x509 structure instead of a cert. req.\n");
408                 BIO_printf(bio_err," -days          number of days a x509 generated by -x509 is valid for.\n");
409                 BIO_printf(bio_err," -newhdr        output \"NEW\" in the header lines\n");
410                 BIO_printf(bio_err," -asn1-kludge   Output the 'request' in a format that is wrong but some CA's\n");
411                 BIO_printf(bio_err,"                have been reported as requiring\n");
412                 BIO_printf(bio_err," -extensions .. specify certificate extension section (override value in config file)\n");
413                 BIO_printf(bio_err," -reqexts ..    specify request extension section (override value in config file)\n");
414                 goto end;
415                 }
416
417         ERR_load_crypto_strings();
418         if(!app_passwd(bio_err, passargin, passargout, &passin, &passout)) {
419                 BIO_printf(bio_err, "Error getting passwords\n");
420                 goto end;
421         }
422
423 #ifndef MONOLITH /* else this has happened in openssl.c (global `config') */
424         /* Lets load up our environment a little */
425         p=getenv("OPENSSL_CONF");
426         if (p == NULL)
427                 p=getenv("SSLEAY_CONF");
428         if (p == NULL)
429                 {
430                 strcpy(config_name,X509_get_default_cert_area());
431 #ifndef VMS
432                 strcat(config_name,"/");
433 #endif
434                 strcat(config_name,OPENSSL_CONF);
435                 p=config_name;
436                 }
437         default_config_file=p;
438         config=CONF_load(config,p,NULL);
439 #endif
440
441         if (template != NULL)
442                 {
443                 long errline;
444
445                 BIO_printf(bio_err,"Using configuration from %s\n",template);
446                 req_conf=CONF_load(NULL,template,&errline);
447                 if (req_conf == NULL)
448                         {
449                         BIO_printf(bio_err,"error on line %ld of %s\n",errline,template);
450                         goto end;
451                         }
452                 }
453         else
454                 {
455                 req_conf=config;
456                 BIO_printf(bio_err,"Using configuration from %s\n",
457                         default_config_file);
458                 if (req_conf == NULL)
459                         {
460                         BIO_printf(bio_err,"Unable to load config info\n");
461                         }
462                 }
463
464         if (req_conf != NULL)
465                 {
466                 p=CONF_get_string(req_conf,NULL,"oid_file");
467                 if (p != NULL)
468                         {
469                         BIO *oid_bio;
470
471                         oid_bio=BIO_new_file(p,"r");
472                         if (oid_bio == NULL) 
473                                 {
474                                 /*
475                                 BIO_printf(bio_err,"problems opening %s for extra oid's\n",p);
476                                 ERR_print_errors(bio_err);
477                                 */
478                                 }
479                         else
480                                 {
481                                 OBJ_create_objects(oid_bio);
482                                 BIO_free(oid_bio);
483                                 }
484                         }
485                 }
486                 if(!add_oid_section(bio_err, req_conf)) goto end;
487
488         if ((md_alg == NULL) &&
489                 ((p=CONF_get_string(req_conf,SECTION,"default_md")) != NULL))
490                 {
491                 if ((md_alg=EVP_get_digestbyname(p)) != NULL)
492                         digest=md_alg;
493                 }
494
495         if(!extensions)
496                 extensions = CONF_get_string(req_conf, SECTION, V3_EXTENSIONS);
497         if(extensions) {
498                 /* Check syntax of file */
499                 X509V3_CTX ctx;
500                 X509V3_set_ctx_test(&ctx);
501                 X509V3_set_conf_lhash(&ctx, req_conf);
502                 if(!X509V3_EXT_add_conf(req_conf, &ctx, extensions, NULL)) {
503                         BIO_printf(bio_err,
504                          "Error Loading extension section %s\n", extensions);
505                         goto end;
506                 }
507         }
508
509         if(!passin)
510                 passin = CONF_get_string(req_conf, SECTION, "input_password");
511
512         if(!passout)
513                 passout = CONF_get_string(req_conf, SECTION, "output_password");
514
515         p = CONF_get_string(req_conf, SECTION, STRING_MASK);
516
517         if(p && !ASN1_STRING_set_default_mask_asc(p)) {
518                 BIO_printf(bio_err, "Invalid global string mask setting %s\n", p);
519                 goto end;
520         }
521
522         if(!req_exts)
523                 req_exts = CONF_get_string(req_conf, SECTION, REQ_EXTENSIONS);
524         if(req_exts) {
525                 /* Check syntax of file */
526                 X509V3_CTX ctx;
527                 X509V3_set_ctx_test(&ctx);
528                 X509V3_set_conf_lhash(&ctx, req_conf);
529                 if(!X509V3_EXT_add_conf(req_conf, &ctx, req_exts, NULL)) {
530                         BIO_printf(bio_err,
531                          "Error Loading request extension section %s\n",
532                                                                 req_exts);
533                         goto end;
534                 }
535         }
536
537         in=BIO_new(BIO_s_file());
538         out=BIO_new(BIO_s_file());
539         if ((in == NULL) || (out == NULL))
540                 goto end;
541
542         if (engine != NULL)
543                 {
544                 if((e = ENGINE_by_id(engine)) == NULL)
545                         {
546                         BIO_printf(bio_err,"invalid engine \"%s\"\n",
547                                 engine);
548                         goto end;
549                         }
550                 if(!ENGINE_set_default(e, ENGINE_METHOD_ALL))
551                         {
552                         BIO_printf(bio_err,"can't use that engine\n");
553                         goto end;
554                         }
555                 BIO_printf(bio_err,"engine \"%s\" set.\n", engine);
556                 /* Free our "structural" reference. */
557                 ENGINE_free(e);
558                 }
559
560         if (keyfile != NULL)
561                 {
562                 if (keyform == FORMAT_ENGINE)
563                         {
564                         if (!e)
565                                 {
566                                 BIO_printf(bio_err,"no engine specified\n");
567                                 goto end;
568                                 }
569                         pkey = ENGINE_load_private_key(e, keyfile, NULL);
570                         }
571                 else
572                         {
573                         if (BIO_read_filename(in,keyfile) <= 0)
574                                 {
575                                 perror(keyfile);
576                                 goto end;
577                                 }
578
579                         if (keyform == FORMAT_ASN1)
580                                 pkey=d2i_PrivateKey_bio(in,NULL);
581                         else if (keyform == FORMAT_PEM)
582                                 {
583                                 pkey=PEM_read_bio_PrivateKey(in,NULL,NULL,
584                                         passin);
585                                 }
586                         else
587                                 {
588                                 BIO_printf(bio_err,"bad input format specified for X509 request\n");
589                                 goto end;
590                                 }
591                         }
592
593                 if (pkey == NULL)
594                         {
595                         BIO_printf(bio_err,"unable to load Private key\n");
596                         goto end;
597                         }
598                 if (EVP_PKEY_type(pkey->type) == EVP_PKEY_DSA)
599                         {
600                         char *randfile = CONF_get_string(req_conf,SECTION,"RANDFILE");
601                         app_RAND_load_file(randfile, bio_err, 0);
602                         }
603                 }
604
605         if (newreq && (pkey == NULL))
606                 {
607                 char *randfile = CONF_get_string(req_conf,SECTION,"RANDFILE");
608                 app_RAND_load_file(randfile, bio_err, 0);
609                 if (inrand)
610                         app_RAND_load_files(inrand);
611         
612                 if (newkey <= 0)
613                         {
614                         newkey=(int)CONF_get_number(req_conf,SECTION,BITS);
615                         if (newkey <= 0)
616                                 newkey=DEFAULT_KEY_LENGTH;
617                         }
618
619                 if (newkey < MIN_KEY_LENGTH)
620                         {
621                         BIO_printf(bio_err,"private key length is too short,\n");
622                         BIO_printf(bio_err,"it needs to be at least %d bits, not %d\n",MIN_KEY_LENGTH,newkey);
623                         goto end;
624                         }
625                 BIO_printf(bio_err,"Generating a %d bit %s private key\n",
626                         newkey,(pkey_type == TYPE_RSA)?"RSA":"DSA");
627
628                 if ((pkey=EVP_PKEY_new()) == NULL) goto end;
629
630 #ifndef NO_RSA
631                 if (pkey_type == TYPE_RSA)
632                         {
633                         if (!EVP_PKEY_assign_RSA(pkey,
634                                 RSA_generate_key(newkey,0x10001,
635                                         req_cb,bio_err)))
636                                 goto end;
637                         }
638                 else
639 #endif
640 #ifndef NO_DSA
641                         if (pkey_type == TYPE_DSA)
642                         {
643                         if (!DSA_generate_key(dsa_params)) goto end;
644                         if (!EVP_PKEY_assign_DSA(pkey,dsa_params)) goto end;
645                         dsa_params=NULL;
646                         }
647 #endif
648
649                 app_RAND_write_file(randfile, bio_err);
650
651                 if (pkey == NULL) goto end;
652
653                 if (keyout == NULL)
654                         keyout=CONF_get_string(req_conf,SECTION,KEYFILE);
655
656                 if (keyout == NULL)
657                         {
658                         BIO_printf(bio_err,"writing new private key to stdout\n");
659                         BIO_set_fp(out,stdout,BIO_NOCLOSE);
660 #ifdef VMS
661                         {
662                         BIO *tmpbio = BIO_new(BIO_f_linebuffer());
663                         out = BIO_push(tmpbio, out);
664                         }
665 #endif
666                         }
667                 else
668                         {
669                         BIO_printf(bio_err,"writing new private key to '%s'\n",keyout);
670                         if (BIO_write_filename(out,keyout) <= 0)
671                                 {
672                                 perror(keyout);
673                                 goto end;
674                                 }
675                         }
676
677                 p=CONF_get_string(req_conf,SECTION,"encrypt_rsa_key");
678                 if (p == NULL)
679                         p=CONF_get_string(req_conf,SECTION,"encrypt_key");
680                 if ((p != NULL) && (strcmp(p,"no") == 0))
681                         cipher=NULL;
682                 if (nodes) cipher=NULL;
683                 
684                 i=0;
685 loop:
686                 if (!PEM_write_bio_PrivateKey(out,pkey,cipher,
687                         NULL,0,NULL,passout))
688                         {
689                         if ((ERR_GET_REASON(ERR_peek_error()) ==
690                                 PEM_R_PROBLEMS_GETTING_PASSWORD) && (i < 3))
691                                 {
692                                 ERR_clear_error();
693                                 i++;
694                                 goto loop;
695                                 }
696                         goto end;
697                         }
698                 BIO_printf(bio_err,"-----\n");
699                 }
700
701         if (!newreq)
702                 {
703                 /* Since we are using a pre-existing certificate
704                  * request, the kludge 'format' info should not be
705                  * changed. */
706                 kludge= -1;
707                 if (infile == NULL)
708                         BIO_set_fp(in,stdin,BIO_NOCLOSE);
709                 else
710                         {
711                         if (BIO_read_filename(in,infile) <= 0)
712                                 {
713                                 perror(infile);
714                                 goto end;
715                                 }
716                         }
717
718                 if      (informat == FORMAT_ASN1)
719                         req=d2i_X509_REQ_bio(in,NULL);
720                 else if (informat == FORMAT_PEM)
721                         req=PEM_read_bio_X509_REQ(in,NULL,NULL,NULL);
722                 else
723                         {
724                         BIO_printf(bio_err,"bad input format specified for X509 request\n");
725                         goto end;
726                         }
727                 if (req == NULL)
728                         {
729                         BIO_printf(bio_err,"unable to load X509 request\n");
730                         goto end;
731                         }
732                 }
733
734         if (newreq || x509)
735                 {
736 #ifndef NO_DSA
737                 if (pkey->type == EVP_PKEY_DSA)
738                         digest=EVP_dss1();
739 #endif
740
741                 if (pkey == NULL)
742                         {
743                         BIO_printf(bio_err,"you need to specify a private key\n");
744                         goto end;
745                         }
746                 if (req == NULL)
747                         {
748                         req=X509_REQ_new();
749                         if (req == NULL)
750                                 {
751                                 goto end;
752                                 }
753
754                         i=make_REQ(req,pkey,!x509);
755                         if ((kludge > 0) && !sk_X509_ATTRIBUTE_num(req->req_info->attributes))
756                                 {
757                                 sk_X509_ATTRIBUTE_free(req->req_info->attributes);
758                                 req->req_info->attributes = NULL;
759                                 }
760                         if (!i)
761                                 {
762                                 BIO_printf(bio_err,"problems making Certificate Request\n");
763                                 goto end;
764                                 }
765                         }
766                 if (x509)
767                         {
768                         EVP_PKEY *tmppkey;
769                         X509V3_CTX ext_ctx;
770                         if ((x509ss=X509_new()) == NULL) goto end;
771
772                         /* Set version to V3 */
773                         if(!X509_set_version(x509ss, 2)) goto end;
774                         ASN1_INTEGER_set(X509_get_serialNumber(x509ss),0L);
775
776                         X509_set_issuer_name(x509ss,
777                                 X509_REQ_get_subject_name(req));
778                         X509_gmtime_adj(X509_get_notBefore(x509ss),0);
779                         X509_gmtime_adj(X509_get_notAfter(x509ss),
780                                 (long)60*60*24*days);
781                         X509_set_subject_name(x509ss,
782                                 X509_REQ_get_subject_name(req));
783                         tmppkey = X509_REQ_get_pubkey(req);
784                         X509_set_pubkey(x509ss,tmppkey);
785                         EVP_PKEY_free(tmppkey);
786
787                         /* Set up V3 context struct */
788
789                         X509V3_set_ctx(&ext_ctx, x509ss, x509ss, NULL, NULL, 0);
790                         X509V3_set_conf_lhash(&ext_ctx, req_conf);
791
792                         /* Add extensions */
793                         if(extensions && !X509V3_EXT_add_conf(req_conf, 
794                                         &ext_ctx, extensions, x509ss))
795                             {
796                             BIO_printf(bio_err,
797                                        "Error Loading extension section %s\n",
798                                        extensions);
799                             goto end;
800                             }
801
802                         if (!(i=X509_sign(x509ss,pkey,digest)))
803                                 goto end;
804                         }
805                 else
806                         {
807                         X509V3_CTX ext_ctx;
808
809                         /* Set up V3 context struct */
810
811                         X509V3_set_ctx(&ext_ctx, NULL, NULL, req, NULL, 0);
812                         X509V3_set_conf_lhash(&ext_ctx, req_conf);
813
814                         /* Add extensions */
815                         if(req_exts && !X509V3_EXT_REQ_add_conf(req_conf, 
816                                         &ext_ctx, req_exts, req))
817                             {
818                             BIO_printf(bio_err,
819                                        "Error Loading extension section %s\n",
820                                        req_exts);
821                             goto end;
822                             }
823                         if (!(i=X509_REQ_sign(req,pkey,digest)))
824                                 goto end;
825                         }
826                 }
827
828         if (verify && !x509)
829                 {
830                 int tmp=0;
831
832                 if (pkey == NULL)
833                         {
834                         pkey=X509_REQ_get_pubkey(req);
835                         tmp=1;
836                         if (pkey == NULL) goto end;
837                         }
838
839                 i=X509_REQ_verify(req,pkey);
840                 if (tmp) {
841                         EVP_PKEY_free(pkey);
842                         pkey=NULL;
843                 }
844
845                 if (i < 0)
846                         {
847                         goto end;
848                         }
849                 else if (i == 0)
850                         {
851                         BIO_printf(bio_err,"verify failure\n");
852                         }
853                 else /* if (i > 0) */
854                         BIO_printf(bio_err,"verify OK\n");
855                 }
856
857         if (noout && !text && !modulus && !subject)
858                 {
859                 ex=0;
860                 goto end;
861                 }
862
863         if (outfile == NULL)
864                 {
865                 BIO_set_fp(out,stdout,BIO_NOCLOSE);
866 #ifdef VMS
867                 {
868                 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
869                 out = BIO_push(tmpbio, out);
870                 }
871 #endif
872                 }
873         else
874                 {
875                 if ((keyout != NULL) && (strcmp(outfile,keyout) == 0))
876                         i=(int)BIO_append_filename(out,outfile);
877                 else
878                         i=(int)BIO_write_filename(out,outfile);
879                 if (!i)
880                         {
881                         perror(outfile);
882                         goto end;
883                         }
884                 }
885
886         if (text)
887                 {
888                 if (x509)
889                         X509_print(out,x509ss);
890                 else    
891                         X509_REQ_print(out,req);
892                 }
893
894         if(subject) 
895                 {
896                 if(x509)
897                         print_name(out, "subject=", X509_get_subject_name(x509ss), nmflag);
898                 else
899                         print_name(out, "subject=", X509_REQ_get_subject_name(req), nmflag);
900                 }
901
902         if (modulus)
903                 {
904                 EVP_PKEY *pubkey;
905
906                 if (x509)
907                         pubkey=X509_get_pubkey(x509ss);
908                 else
909                         pubkey=X509_REQ_get_pubkey(req);
910                 if (pubkey == NULL)
911                         {
912                         fprintf(stdout,"Modulus=unavailable\n");
913                         goto end; 
914                         }
915                 fprintf(stdout,"Modulus=");
916 #ifndef NO_RSA
917                 if (pubkey->type == EVP_PKEY_RSA)
918                         BN_print(out,pubkey->pkey.rsa->n);
919                 else
920 #endif
921                         fprintf(stdout,"Wrong Algorithm type");
922                 fprintf(stdout,"\n");
923                 }
924
925         if (!noout && !x509)
926                 {
927                 if      (outformat == FORMAT_ASN1)
928                         i=i2d_X509_REQ_bio(out,req);
929                 else if (outformat == FORMAT_PEM) {
930                         if(newhdr) i=PEM_write_bio_X509_REQ_NEW(out,req);
931                         else i=PEM_write_bio_X509_REQ(out,req);
932                 } else {
933                         BIO_printf(bio_err,"bad output format specified for outfile\n");
934                         goto end;
935                         }
936                 if (!i)
937                         {
938                         BIO_printf(bio_err,"unable to write X509 request\n");
939                         goto end;
940                         }
941                 }
942         if (!noout && x509 && (x509ss != NULL))
943                 {
944                 if      (outformat == FORMAT_ASN1)
945                         i=i2d_X509_bio(out,x509ss);
946                 else if (outformat == FORMAT_PEM)
947                         i=PEM_write_bio_X509(out,x509ss);
948                 else    {
949                         BIO_printf(bio_err,"bad output format specified for outfile\n");
950                         goto end;
951                         }
952                 if (!i)
953                         {
954                         BIO_printf(bio_err,"unable to write X509 certificate\n");
955                         goto end;
956                         }
957                 }
958         ex=0;
959 end:
960         if (ex)
961                 {
962                 ERR_print_errors(bio_err);
963                 }
964         if ((req_conf != NULL) && (req_conf != config)) CONF_free(req_conf);
965         BIO_free(in);
966         BIO_free_all(out);
967         EVP_PKEY_free(pkey);
968         X509_REQ_free(req);
969         X509_free(x509ss);
970         if(passargin && passin) OPENSSL_free(passin);
971         if(passargout && passout) OPENSSL_free(passout);
972         OBJ_cleanup();
973 #ifndef NO_DSA
974         if (dsa_params != NULL) DSA_free(dsa_params);
975 #endif
976         EXIT(ex);
977         }
978
979 static int make_REQ(X509_REQ *req, EVP_PKEY *pkey, int attribs)
980         {
981         int ret=0,i;
982         char no_prompt = 0;
983         STACK_OF(CONF_VALUE) *dn_sk, *attr_sk = NULL;
984         char *tmp, *dn_sect,*attr_sect;
985
986         tmp=CONF_get_string(req_conf,SECTION,PROMPT);
987         if((tmp != NULL) && !strcmp(tmp, "no")) no_prompt = 1;
988
989         dn_sect=CONF_get_string(req_conf,SECTION,DISTINGUISHED_NAME);
990         if (dn_sect == NULL)
991                 {
992                 BIO_printf(bio_err,"unable to find '%s' in config\n",
993                         DISTINGUISHED_NAME);
994                 goto err;
995                 }
996         dn_sk=CONF_get_section(req_conf,dn_sect);
997         if (dn_sk == NULL)
998                 {
999                 BIO_printf(bio_err,"unable to get '%s' section\n",dn_sect);
1000                 goto err;
1001                 }
1002
1003         attr_sect=CONF_get_string(req_conf,SECTION,ATTRIBUTES);
1004         if (attr_sect == NULL)
1005                 attr_sk=NULL;
1006         else
1007                 {
1008                 attr_sk=CONF_get_section(req_conf,attr_sect);
1009                 if (attr_sk == NULL)
1010                         {
1011                         BIO_printf(bio_err,"unable to get '%s' section\n",attr_sect);
1012                         goto err;
1013                         }
1014                 }
1015
1016         /* setup version number */
1017         if (!X509_REQ_set_version(req,0L)) goto err; /* version 1 */
1018
1019         if(no_prompt) i = auto_info(req, dn_sk, attr_sk, attribs);
1020         else i = prompt_info(req, dn_sk, dn_sect, attr_sk, attr_sect, attribs);
1021         if(!i) goto err;
1022
1023         X509_REQ_set_pubkey(req,pkey);
1024
1025         ret=1;
1026 err:
1027         return(ret);
1028         }
1029
1030
1031 static int prompt_info(X509_REQ *req,
1032                 STACK_OF(CONF_VALUE) *dn_sk, char *dn_sect,
1033                 STACK_OF(CONF_VALUE) *attr_sk, char *attr_sect, int attribs)
1034         {
1035         int i;
1036         char *p,*q;
1037         char buf[100];
1038         int nid,min,max;
1039         char *type,*def,*value;
1040         CONF_VALUE *v;
1041         X509_NAME *subj;
1042         subj = X509_REQ_get_subject_name(req);
1043         BIO_printf(bio_err,"You are about to be asked to enter information that will be incorporated\n");
1044         BIO_printf(bio_err,"into your certificate request.\n");
1045         BIO_printf(bio_err,"What you are about to enter is what is called a Distinguished Name or a DN.\n");
1046         BIO_printf(bio_err,"There are quite a few fields but you can leave some blank\n");
1047         BIO_printf(bio_err,"For some fields there will be a default value,\n");
1048         BIO_printf(bio_err,"If you enter '.', the field will be left blank.\n");
1049         BIO_printf(bio_err,"-----\n");
1050
1051
1052         if (sk_CONF_VALUE_num(dn_sk))
1053                 {
1054                 i= -1;
1055 start:          for (;;)
1056                         {
1057                         i++;
1058                         if (sk_CONF_VALUE_num(dn_sk) <= i) break;
1059
1060                         v=sk_CONF_VALUE_value(dn_sk,i);
1061                         p=q=NULL;
1062                         type=v->name;
1063                         if(!check_end(type,"_min") || !check_end(type,"_max") ||
1064                                 !check_end(type,"_default") ||
1065                                          !check_end(type,"_value")) continue;
1066                         /* Skip past any leading X. X: X, etc to allow for
1067                          * multiple instances 
1068                          */
1069                         for(p = v->name; *p ; p++) 
1070                                 if ((*p == ':') || (*p == ',') ||
1071                                                          (*p == '.')) {
1072                                         p++;
1073                                         if(*p) type = p;
1074                                         break;
1075                                 }
1076                         /* If OBJ not recognised ignore it */
1077                         if ((nid=OBJ_txt2nid(type)) == NID_undef) goto start;
1078                         sprintf(buf,"%s_default",v->name);
1079                         if ((def=CONF_get_string(req_conf,dn_sect,buf)) == NULL)
1080                                 def="";
1081                                 
1082                         sprintf(buf,"%s_value",v->name);
1083                         if ((value=CONF_get_string(req_conf,dn_sect,buf)) == NULL)
1084                                 value=NULL;
1085
1086                         sprintf(buf,"%s_min",v->name);
1087                         min=(int)CONF_get_number(req_conf,dn_sect,buf);
1088
1089                         sprintf(buf,"%s_max",v->name);
1090                         max=(int)CONF_get_number(req_conf,dn_sect,buf);
1091
1092                         if (!add_DN_object(subj,v->value,def,value,nid,
1093                                 min,max))
1094                                 return 0;
1095                         }
1096                 if (X509_NAME_entry_count(subj) == 0)
1097                         {
1098                         BIO_printf(bio_err,"error, no objects specified in config file\n");
1099                         return 0;
1100                         }
1101
1102                 if (attribs)
1103                         {
1104                         if ((attr_sk != NULL) && (sk_CONF_VALUE_num(attr_sk) > 0))
1105                                 {
1106                                 BIO_printf(bio_err,"\nPlease enter the following 'extra' attributes\n");
1107                                 BIO_printf(bio_err,"to be sent with your certificate request\n");
1108                                 }
1109
1110                         i= -1;
1111 start2:                 for (;;)
1112                                 {
1113                                 i++;
1114                                 if ((attr_sk == NULL) ||
1115                                             (sk_CONF_VALUE_num(attr_sk) <= i))
1116                                         break;
1117
1118                                 v=sk_CONF_VALUE_value(attr_sk,i);
1119                                 type=v->name;
1120                                 if ((nid=OBJ_txt2nid(type)) == NID_undef)
1121                                         goto start2;
1122
1123                                 sprintf(buf,"%s_default",type);
1124                                 if ((def=CONF_get_string(req_conf,attr_sect,buf))
1125                                         == NULL)
1126                                         def="";
1127                                 
1128                                 sprintf(buf,"%s_value",type);
1129                                 if ((value=CONF_get_string(req_conf,attr_sect,buf))
1130                                         == NULL)
1131                                         value=NULL;
1132
1133                                 sprintf(buf,"%s_min",type);
1134                                 min=(int)CONF_get_number(req_conf,attr_sect,buf);
1135
1136                                 sprintf(buf,"%s_max",type);
1137                                 max=(int)CONF_get_number(req_conf,attr_sect,buf);
1138
1139                                 if (!add_attribute_object(req,
1140                                         v->value,def,value,nid,min,max))
1141                                         return 0;
1142                                 }
1143                         }
1144                 }
1145         else
1146                 {
1147                 BIO_printf(bio_err,"No template, please set one up.\n");
1148                 return 0;
1149                 }
1150
1151         return 1;
1152
1153         }
1154
1155 static int auto_info(X509_REQ *req, STACK_OF(CONF_VALUE) *dn_sk,
1156                         STACK_OF(CONF_VALUE) *attr_sk, int attribs)
1157         {
1158         int i;
1159         char *p,*q;
1160         char *type;
1161         CONF_VALUE *v;
1162         X509_NAME *subj;
1163
1164         subj = X509_REQ_get_subject_name(req);
1165
1166         for (i = 0; i < sk_CONF_VALUE_num(dn_sk); i++)
1167                 {
1168                 v=sk_CONF_VALUE_value(dn_sk,i);
1169                 p=q=NULL;
1170                 type=v->name;
1171                 /* Skip past any leading X. X: X, etc to allow for
1172                  * multiple instances 
1173                  */
1174                 for(p = v->name; *p ; p++) 
1175 #ifndef CHARSET_EBCDIC
1176                         if ((*p == ':') || (*p == ',') || (*p == '.')) {
1177 #else
1178                         if ((*p == os_toascii[':']) || (*p == os_toascii[',']) || (*p == os_toascii['.'])) {
1179 #endif
1180                                 p++;
1181                                 if(*p) type = p;
1182                                 break;
1183                         }
1184                 if (!X509_NAME_add_entry_by_txt(subj,type, MBSTRING_ASC,
1185                                 (unsigned char *) v->value,-1,-1,0)) return 0;
1186
1187                 }
1188
1189                 if (!X509_NAME_entry_count(subj))
1190                         {
1191                         BIO_printf(bio_err,"error, no objects specified in config file\n");
1192                         return 0;
1193                         }
1194                 if (attribs)
1195                         {
1196                         for (i = 0; i < sk_CONF_VALUE_num(attr_sk); i++)
1197                                 {
1198                                 v=sk_CONF_VALUE_value(attr_sk,i);
1199                                 if(!X509_REQ_add1_attr_by_txt(req, v->name, MBSTRING_ASC,
1200                                         (unsigned char *)v->value, -1)) return 0;
1201                                 }
1202                         }
1203         return 1;
1204         }
1205
1206
1207 static int add_DN_object(X509_NAME *n, char *text, char *def, char *value,
1208              int nid, int min, int max)
1209         {
1210         int i,ret=0;
1211         MS_STATIC char buf[1024];
1212 start:
1213         BIO_printf(bio_err,"%s [%s]:",text,def);
1214         (void)BIO_flush(bio_err);
1215         if (value != NULL)
1216                 {
1217                 strcpy(buf,value);
1218                 strcat(buf,"\n");
1219                 BIO_printf(bio_err,"%s\n",value);
1220                 }
1221         else
1222                 {
1223                 buf[0]='\0';
1224                 fgets(buf,1024,stdin);
1225                 }
1226
1227         if (buf[0] == '\0') return(0);
1228         else if (buf[0] == '\n')
1229                 {
1230                 if ((def == NULL) || (def[0] == '\0'))
1231                         return(1);
1232                 strcpy(buf,def);
1233                 strcat(buf,"\n");
1234                 }
1235         else if ((buf[0] == '.') && (buf[1] == '\n')) return(1);
1236
1237         i=strlen(buf);
1238         if (buf[i-1] != '\n')
1239                 {
1240                 BIO_printf(bio_err,"weird input :-(\n");
1241                 return(0);
1242                 }
1243         buf[--i]='\0';
1244
1245 #ifdef CHARSET_EBCDIC
1246         ebcdic2ascii(buf, buf, i);
1247 #endif
1248         if(!req_check_len(i, min, max)) goto start;
1249         if (!X509_NAME_add_entry_by_NID(n,nid, MBSTRING_ASC,
1250                                 (unsigned char *) buf, -1,-1,0)) goto err;
1251         ret=1;
1252 err:
1253         return(ret);
1254         }
1255
1256 static int add_attribute_object(X509_REQ *req, char *text,
1257                                 char *def, char *value, int nid, int min,
1258                                 int max)
1259         {
1260         int i;
1261         static char buf[1024];
1262
1263 start:
1264         BIO_printf(bio_err,"%s [%s]:",text,def);
1265         (void)BIO_flush(bio_err);
1266         if (value != NULL)
1267                 {
1268                 strcpy(buf,value);
1269                 strcat(buf,"\n");
1270                 BIO_printf(bio_err,"%s\n",value);
1271                 }
1272         else
1273                 {
1274                 buf[0]='\0';
1275                 fgets(buf,1024,stdin);
1276                 }
1277
1278         if (buf[0] == '\0') return(0);
1279         else if (buf[0] == '\n')
1280                 {
1281                 if ((def == NULL) || (def[0] == '\0'))
1282                         return(1);
1283                 strcpy(buf,def);
1284                 strcat(buf,"\n");
1285                 }
1286         else if ((buf[0] == '.') && (buf[1] == '\n')) return(1);
1287
1288         i=strlen(buf);
1289         if (buf[i-1] != '\n')
1290                 {
1291                 BIO_printf(bio_err,"weird input :-(\n");
1292                 return(0);
1293                 }
1294         buf[--i]='\0';
1295 #ifdef CHARSET_EBCDIC
1296         ebcdic2ascii(buf, buf, i);
1297 #endif
1298         if(!req_check_len(i, min, max)) goto start;
1299
1300         if(!X509_REQ_add1_attr_by_NID(req, nid, MBSTRING_ASC,
1301                                         (unsigned char *)buf, -1)) {
1302                 BIO_printf(bio_err, "Error adding attribute\n");
1303                 ERR_print_errors(bio_err);
1304                 goto err;
1305         }
1306
1307         return(1);
1308 err:
1309         return(0);
1310         }
1311
1312 #ifndef NO_RSA
1313 static void MS_CALLBACK req_cb(int p, int n, void *arg)
1314         {
1315         char c='*';
1316
1317         if (p == 0) c='.';
1318         if (p == 1) c='+';
1319         if (p == 2) c='*';
1320         if (p == 3) c='\n';
1321         BIO_write((BIO *)arg,&c,1);
1322         (void)BIO_flush((BIO *)arg);
1323 #ifdef LINT
1324         p=n;
1325 #endif
1326         }
1327 #endif
1328
1329 static int req_check_len(int len, int min, int max)
1330         {
1331         if (len < min)
1332                 {
1333                 BIO_printf(bio_err,"string is too short, it needs to be at least %d bytes long\n",min);
1334                 return(0);
1335                 }
1336         if ((max != 0) && (len > max))
1337                 {
1338                 BIO_printf(bio_err,"string is too long, it needs to be less than  %d bytes long\n",max);
1339                 return(0);
1340                 }
1341         return(1);
1342         }
1343
1344 /* Check if the end of a string matches 'end' */
1345 static int check_end(char *str, char *end)
1346 {
1347         int elen, slen; 
1348         char *tmp;
1349         elen = strlen(end);
1350         slen = strlen(str);
1351         if(elen > slen) return 1;
1352         tmp = str + slen - elen;
1353         return strcmp(tmp, end);
1354 }