Import OpenSSL-0.9.8i.
[dragonfly.git] / crypto / openssl-0.9.7e / apps / req.c
blob046bb3dc90ceb438272c9ad8a8da3475e7f3f518
1 /* apps/req.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
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).
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.
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)"
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.
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.]
59 #include <stdio.h>
60 #include <stdlib.h>
61 #include <time.h>
62 #include <string.h>
63 #ifdef OPENSSL_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 "../crypto/cryptlib.h"
78 #define SECTION "req"
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 #define UTF8_IN "utf8"
90 #define DEFAULT_KEY_LENGTH 512
91 #define MIN_KEY_LENGTH 384
93 #undef PROG
94 #define PROG req_main
96 /* -inform arg - input format - default PEM (DER or PEM)
97 * -outform arg - output format - default PEM
98 * -in arg - input file - default stdin
99 * -out arg - output file - default stdout
100 * -verify - check request signature
101 * -noout - don't print stuff out.
102 * -text - print out human readable text.
103 * -nodes - no des encryption
104 * -config file - Load configuration file.
105 * -key file - make a request using key in file (or use it for verification).
106 * -keyform arg - key file format.
107 * -rand file(s) - load the file(s) into the PRNG.
108 * -newkey - make a key and a request.
109 * -modulus - print RSA modulus.
110 * -pubkey - output Public Key.
111 * -x509 - output a self signed X509 structure instead.
112 * -asn1-kludge - output new certificate request in a format that some CA's
113 * require. This format is wrong
116 static int make_REQ(X509_REQ *req,EVP_PKEY *pkey,char *dn,int attribs,
117 unsigned long chtype);
118 static int build_subject(X509_REQ *req, char *subj, unsigned long chtype);
119 static int prompt_info(X509_REQ *req,
120 STACK_OF(CONF_VALUE) *dn_sk, char *dn_sect,
121 STACK_OF(CONF_VALUE) *attr_sk, char *attr_sect, int attribs,
122 unsigned long chtype);
123 static int auto_info(X509_REQ *req, STACK_OF(CONF_VALUE) *sk,
124 STACK_OF(CONF_VALUE) *attr, int attribs,
125 unsigned long chtype);
126 static int add_attribute_object(X509_REQ *req, char *text,
127 char *def, char *value, int nid, int n_min,
128 int n_max, unsigned long chtype);
129 static int add_DN_object(X509_NAME *n, char *text, char *def, char *value,
130 int nid,int n_min,int n_max, unsigned long chtype);
131 #ifndef OPENSSL_NO_RSA
132 static void MS_CALLBACK req_cb(int p,int n,void *arg);
133 #endif
134 static int req_check_len(int len,int n_min,int n_max);
135 static int check_end(char *str, char *end);
136 #ifndef MONOLITH
137 static char *default_config_file=NULL;
138 #endif
139 static CONF *req_conf=NULL;
140 static int batch=0;
142 #define TYPE_RSA 1
143 #define TYPE_DSA 2
144 #define TYPE_DH 3
146 int MAIN(int, char **);
148 int MAIN(int argc, char **argv)
150 ENGINE *e = NULL;
151 #ifndef OPENSSL_NO_DSA
152 DSA *dsa_params=NULL;
153 #endif
154 unsigned long nmflag = 0, reqflag = 0;
155 int ex=1,x509=0,days=30;
156 X509 *x509ss=NULL;
157 X509_REQ *req=NULL;
158 EVP_PKEY *pkey=NULL;
159 int i=0,badops=0,newreq=0,verbose=0,pkey_type=TYPE_RSA;
160 long newkey = -1;
161 BIO *in=NULL,*out=NULL;
162 int informat,outformat,verify=0,noout=0,text=0,keyform=FORMAT_PEM;
163 int nodes=0,kludge=0,newhdr=0,subject=0,pubkey=0;
164 char *infile,*outfile,*prog,*keyfile=NULL,*template=NULL,*keyout=NULL;
165 #ifndef OPENSSL_NO_ENGINE
166 char *engine=NULL;
167 #endif
168 char *extensions = NULL;
169 char *req_exts = NULL;
170 const EVP_CIPHER *cipher=NULL;
171 ASN1_INTEGER *serial = NULL;
172 int modulus=0;
173 char *inrand=NULL;
174 char *passargin = NULL, *passargout = NULL;
175 char *passin = NULL, *passout = NULL;
176 char *p;
177 char *subj = NULL;
178 const EVP_MD *md_alg=NULL,*digest=EVP_md5();
179 unsigned long chtype = MBSTRING_ASC;
180 #ifndef MONOLITH
181 char *to_free;
182 long errline;
183 #endif
185 req_conf = NULL;
186 #ifndef OPENSSL_NO_DES
187 cipher=EVP_des_ede3_cbc();
188 #endif
189 apps_startup();
191 if (bio_err == NULL)
192 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
193 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
195 infile=NULL;
196 outfile=NULL;
197 informat=FORMAT_PEM;
198 outformat=FORMAT_PEM;
200 prog=argv[0];
201 argc--;
202 argv++;
203 while (argc >= 1)
205 if (strcmp(*argv,"-inform") == 0)
207 if (--argc < 1) goto bad;
208 informat=str2fmt(*(++argv));
210 else if (strcmp(*argv,"-outform") == 0)
212 if (--argc < 1) goto bad;
213 outformat=str2fmt(*(++argv));
215 #ifndef OPENSSL_NO_ENGINE
216 else if (strcmp(*argv,"-engine") == 0)
218 if (--argc < 1) goto bad;
219 engine= *(++argv);
221 #endif
222 else if (strcmp(*argv,"-key") == 0)
224 if (--argc < 1) goto bad;
225 keyfile= *(++argv);
227 else if (strcmp(*argv,"-pubkey") == 0)
229 pubkey=1;
231 else if (strcmp(*argv,"-new") == 0)
233 newreq=1;
235 else if (strcmp(*argv,"-config") == 0)
237 if (--argc < 1) goto bad;
238 template= *(++argv);
240 else if (strcmp(*argv,"-keyform") == 0)
242 if (--argc < 1) goto bad;
243 keyform=str2fmt(*(++argv));
245 else if (strcmp(*argv,"-in") == 0)
247 if (--argc < 1) goto bad;
248 infile= *(++argv);
250 else if (strcmp(*argv,"-out") == 0)
252 if (--argc < 1) goto bad;
253 outfile= *(++argv);
255 else if (strcmp(*argv,"-keyout") == 0)
257 if (--argc < 1) goto bad;
258 keyout= *(++argv);
260 else if (strcmp(*argv,"-passin") == 0)
262 if (--argc < 1) goto bad;
263 passargin= *(++argv);
265 else if (strcmp(*argv,"-passout") == 0)
267 if (--argc < 1) goto bad;
268 passargout= *(++argv);
270 else if (strcmp(*argv,"-rand") == 0)
272 if (--argc < 1) goto bad;
273 inrand= *(++argv);
275 else if (strcmp(*argv,"-newkey") == 0)
277 int is_numeric;
279 if (--argc < 1) goto bad;
280 p= *(++argv);
281 is_numeric = p[0] >= '0' && p[0] <= '9';
282 if (strncmp("rsa:",p,4) == 0 || is_numeric)
284 pkey_type=TYPE_RSA;
285 if(!is_numeric)
286 p+=4;
287 newkey= atoi(p);
289 else
290 #ifndef OPENSSL_NO_DSA
291 if (strncmp("dsa:",p,4) == 0)
293 X509 *xtmp=NULL;
294 EVP_PKEY *dtmp;
296 pkey_type=TYPE_DSA;
297 p+=4;
298 if ((in=BIO_new_file(p,"r")) == NULL)
300 perror(p);
301 goto end;
303 if ((dsa_params=PEM_read_bio_DSAparams(in,NULL,NULL,NULL)) == NULL)
305 ERR_clear_error();
306 (void)BIO_reset(in);
307 if ((xtmp=PEM_read_bio_X509(in,NULL,NULL,NULL)) == NULL)
309 BIO_printf(bio_err,"unable to load DSA parameters from file\n");
310 goto end;
313 if ((dtmp=X509_get_pubkey(xtmp)) == NULL) goto end;
314 if (dtmp->type == EVP_PKEY_DSA)
315 dsa_params=DSAparams_dup(dtmp->pkey.dsa);
316 EVP_PKEY_free(dtmp);
317 X509_free(xtmp);
318 if (dsa_params == NULL)
320 BIO_printf(bio_err,"Certificate does not contain DSA parameters\n");
321 goto end;
324 BIO_free(in);
325 newkey=BN_num_bits(dsa_params->p);
326 in=NULL;
328 else
329 #endif
330 #ifndef OPENSSL_NO_DH
331 if (strncmp("dh:",p,4) == 0)
333 pkey_type=TYPE_DH;
334 p+=3;
336 else
337 #endif
338 pkey_type=TYPE_RSA;
340 newreq=1;
342 else if (strcmp(*argv,"-batch") == 0)
343 batch=1;
344 else if (strcmp(*argv,"-newhdr") == 0)
345 newhdr=1;
346 else if (strcmp(*argv,"-modulus") == 0)
347 modulus=1;
348 else if (strcmp(*argv,"-verify") == 0)
349 verify=1;
350 else if (strcmp(*argv,"-nodes") == 0)
351 nodes=1;
352 else if (strcmp(*argv,"-noout") == 0)
353 noout=1;
354 else if (strcmp(*argv,"-verbose") == 0)
355 verbose=1;
356 else if (strcmp(*argv,"-utf8") == 0)
357 chtype = MBSTRING_UTF8;
358 else if (strcmp(*argv,"-nameopt") == 0)
360 if (--argc < 1) goto bad;
361 if (!set_name_ex(&nmflag, *(++argv))) goto bad;
363 else if (strcmp(*argv,"-reqopt") == 0)
365 if (--argc < 1) goto bad;
366 if (!set_cert_ex(&reqflag, *(++argv))) goto bad;
368 else if (strcmp(*argv,"-subject") == 0)
369 subject=1;
370 else if (strcmp(*argv,"-text") == 0)
371 text=1;
372 else if (strcmp(*argv,"-x509") == 0)
373 x509=1;
374 else if (strcmp(*argv,"-asn1-kludge") == 0)
375 kludge=1;
376 else if (strcmp(*argv,"-no-asn1-kludge") == 0)
377 kludge=0;
378 else if (strcmp(*argv,"-subj") == 0)
380 if (--argc < 1) goto bad;
381 subj= *(++argv);
383 else if (strcmp(*argv,"-days") == 0)
385 if (--argc < 1) goto bad;
386 days= atoi(*(++argv));
387 if (days == 0) days=30;
389 else if (strcmp(*argv,"-set_serial") == 0)
391 if (--argc < 1) goto bad;
392 serial = s2i_ASN1_INTEGER(NULL, *(++argv));
393 if (!serial) goto bad;
395 else if ((md_alg=EVP_get_digestbyname(&((*argv)[1]))) != NULL)
397 /* ok */
398 digest=md_alg;
400 else if (strcmp(*argv,"-extensions") == 0)
402 if (--argc < 1) goto bad;
403 extensions = *(++argv);
405 else if (strcmp(*argv,"-reqexts") == 0)
407 if (--argc < 1) goto bad;
408 req_exts = *(++argv);
410 else
412 BIO_printf(bio_err,"unknown option %s\n",*argv);
413 badops=1;
414 break;
416 argc--;
417 argv++;
420 if (badops)
422 bad:
423 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
424 BIO_printf(bio_err,"where options are\n");
425 BIO_printf(bio_err," -inform arg input format - DER or PEM\n");
426 BIO_printf(bio_err," -outform arg output format - DER or PEM\n");
427 BIO_printf(bio_err," -in arg input file\n");
428 BIO_printf(bio_err," -out arg output file\n");
429 BIO_printf(bio_err," -text text form of request\n");
430 BIO_printf(bio_err," -pubkey output public key\n");
431 BIO_printf(bio_err," -noout do not output REQ\n");
432 BIO_printf(bio_err," -verify verify signature on REQ\n");
433 BIO_printf(bio_err," -modulus RSA modulus\n");
434 BIO_printf(bio_err," -nodes don't encrypt the output key\n");
435 #ifndef OPENSSL_NO_ENGINE
436 BIO_printf(bio_err," -engine e use engine e, possibly a hardware device\n");
437 #endif
438 BIO_printf(bio_err," -subject output the request's subject\n");
439 BIO_printf(bio_err," -passin private key password source\n");
440 BIO_printf(bio_err," -key file use the private key contained in file\n");
441 BIO_printf(bio_err," -keyform arg key file format\n");
442 BIO_printf(bio_err," -keyout arg file to send the key to\n");
443 BIO_printf(bio_err," -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
444 BIO_printf(bio_err," load the file (or the files in the directory) into\n");
445 BIO_printf(bio_err," the random number generator\n");
446 BIO_printf(bio_err," -newkey rsa:bits generate a new RSA key of 'bits' in size\n");
447 BIO_printf(bio_err," -newkey dsa:file generate a new DSA key, parameters taken from CA in 'file'\n");
448 BIO_printf(bio_err," -[digest] Digest to sign with (md5, sha1, md2, mdc2, md4)\n");
449 BIO_printf(bio_err," -config file request template file.\n");
450 BIO_printf(bio_err," -subj arg set or modify request subject\n");
451 BIO_printf(bio_err," -new new request.\n");
452 BIO_printf(bio_err," -batch do not ask anything during request generation\n");
453 BIO_printf(bio_err," -x509 output a x509 structure instead of a cert. req.\n");
454 BIO_printf(bio_err," -days number of days a certificate generated by -x509 is valid for.\n");
455 BIO_printf(bio_err," -set_serial serial number to use for a certificate generated by -x509.\n");
456 BIO_printf(bio_err," -newhdr output \"NEW\" in the header lines\n");
457 BIO_printf(bio_err," -asn1-kludge Output the 'request' in a format that is wrong but some CA's\n");
458 BIO_printf(bio_err," have been reported as requiring\n");
459 BIO_printf(bio_err," -extensions .. specify certificate extension section (override value in config file)\n");
460 BIO_printf(bio_err," -reqexts .. specify request extension section (override value in config file)\n");
461 BIO_printf(bio_err," -utf8 input characters are UTF8 (default ASCII)\n");
462 BIO_printf(bio_err," -nameopt arg - various certificate name options\n");
463 BIO_printf(bio_err," -reqopt arg - various request text options\n\n");
464 goto end;
467 ERR_load_crypto_strings();
468 if(!app_passwd(bio_err, passargin, passargout, &passin, &passout)) {
469 BIO_printf(bio_err, "Error getting passwords\n");
470 goto end;
473 #ifndef MONOLITH /* else this has happened in openssl.c (global `config') */
474 /* Lets load up our environment a little */
475 p=getenv("OPENSSL_CONF");
476 if (p == NULL)
477 p=getenv("SSLEAY_CONF");
478 if (p == NULL)
479 p=to_free=make_config_name();
480 default_config_file=p;
481 config=NCONF_new(NULL);
482 i=NCONF_load(config, p, &errline);
483 #endif
485 if (template != NULL)
487 long errline = -1;
489 if( verbose )
490 BIO_printf(bio_err,"Using configuration from %s\n",template);
491 req_conf=NCONF_new(NULL);
492 i=NCONF_load(req_conf,template,&errline);
493 if (i == 0)
495 BIO_printf(bio_err,"error on line %ld of %s\n",errline,template);
496 goto end;
499 else
501 req_conf=config;
502 if( verbose )
503 BIO_printf(bio_err,"Using configuration from %s\n",
504 default_config_file);
505 if (req_conf == NULL)
507 BIO_printf(bio_err,"Unable to load config info\n");
511 if (req_conf != NULL)
513 if (!load_config(bio_err, req_conf))
514 goto end;
515 p=NCONF_get_string(req_conf,NULL,"oid_file");
516 if (p == NULL)
517 ERR_clear_error();
518 if (p != NULL)
520 BIO *oid_bio;
522 oid_bio=BIO_new_file(p,"r");
523 if (oid_bio == NULL)
526 BIO_printf(bio_err,"problems opening %s for extra oid's\n",p);
527 ERR_print_errors(bio_err);
530 else
532 OBJ_create_objects(oid_bio);
533 BIO_free(oid_bio);
537 if(!add_oid_section(bio_err, req_conf)) goto end;
539 if (md_alg == NULL)
541 p=NCONF_get_string(req_conf,SECTION,"default_md");
542 if (p == NULL)
543 ERR_clear_error();
544 if (p != NULL)
546 if ((md_alg=EVP_get_digestbyname(p)) != NULL)
547 digest=md_alg;
551 if (!extensions)
553 extensions = NCONF_get_string(req_conf, SECTION, V3_EXTENSIONS);
554 if (!extensions)
555 ERR_clear_error();
557 if (extensions) {
558 /* Check syntax of file */
559 X509V3_CTX ctx;
560 X509V3_set_ctx_test(&ctx);
561 X509V3_set_nconf(&ctx, req_conf);
562 if(!X509V3_EXT_add_nconf(req_conf, &ctx, extensions, NULL)) {
563 BIO_printf(bio_err,
564 "Error Loading extension section %s\n", extensions);
565 goto end;
569 if(!passin)
571 passin = NCONF_get_string(req_conf, SECTION, "input_password");
572 if (!passin)
573 ERR_clear_error();
576 if(!passout)
578 passout = NCONF_get_string(req_conf, SECTION, "output_password");
579 if (!passout)
580 ERR_clear_error();
583 p = NCONF_get_string(req_conf, SECTION, STRING_MASK);
584 if (!p)
585 ERR_clear_error();
587 if(p && !ASN1_STRING_set_default_mask_asc(p)) {
588 BIO_printf(bio_err, "Invalid global string mask setting %s\n", p);
589 goto end;
592 if (chtype != MBSTRING_UTF8)
594 p = NCONF_get_string(req_conf, SECTION, UTF8_IN);
595 if (!p)
596 ERR_clear_error();
597 else if (!strcmp(p, "yes"))
598 chtype = MBSTRING_UTF8;
602 if(!req_exts)
604 req_exts = NCONF_get_string(req_conf, SECTION, REQ_EXTENSIONS);
605 if (!req_exts)
606 ERR_clear_error();
608 if(req_exts) {
609 /* Check syntax of file */
610 X509V3_CTX ctx;
611 X509V3_set_ctx_test(&ctx);
612 X509V3_set_nconf(&ctx, req_conf);
613 if(!X509V3_EXT_add_nconf(req_conf, &ctx, req_exts, NULL)) {
614 BIO_printf(bio_err,
615 "Error Loading request extension section %s\n",
616 req_exts);
617 goto end;
621 in=BIO_new(BIO_s_file());
622 out=BIO_new(BIO_s_file());
623 if ((in == NULL) || (out == NULL))
624 goto end;
626 #ifndef OPENSSL_NO_ENGINE
627 e = setup_engine(bio_err, engine, 0);
628 #endif
630 if (keyfile != NULL)
632 pkey = load_key(bio_err, keyfile, keyform, 0, passin, e,
633 "Private Key");
634 if (!pkey)
636 /* load_key() has already printed an appropriate
637 message */
638 goto end;
640 if (EVP_PKEY_type(pkey->type) == EVP_PKEY_DSA)
642 char *randfile = NCONF_get_string(req_conf,SECTION,"RANDFILE");
643 if (randfile == NULL)
644 ERR_clear_error();
645 app_RAND_load_file(randfile, bio_err, 0);
649 if (newreq && (pkey == NULL))
651 char *randfile = NCONF_get_string(req_conf,SECTION,"RANDFILE");
652 if (randfile == NULL)
653 ERR_clear_error();
654 app_RAND_load_file(randfile, bio_err, 0);
655 if (inrand)
656 app_RAND_load_files(inrand);
658 if (newkey <= 0)
660 if (!NCONF_get_number(req_conf,SECTION,BITS, &newkey))
661 newkey=DEFAULT_KEY_LENGTH;
664 if (newkey < MIN_KEY_LENGTH)
666 BIO_printf(bio_err,"private key length is too short,\n");
667 BIO_printf(bio_err,"it needs to be at least %d bits, not %d\n",MIN_KEY_LENGTH,newkey);
668 goto end;
670 BIO_printf(bio_err,"Generating a %d bit %s private key\n",
671 newkey,(pkey_type == TYPE_RSA)?"RSA":"DSA");
673 if ((pkey=EVP_PKEY_new()) == NULL) goto end;
675 #ifndef OPENSSL_NO_RSA
676 if (pkey_type == TYPE_RSA)
678 if (!EVP_PKEY_assign_RSA(pkey,
679 RSA_generate_key(newkey,0x10001,
680 req_cb,bio_err)))
681 goto end;
683 else
684 #endif
685 #ifndef OPENSSL_NO_DSA
686 if (pkey_type == TYPE_DSA)
688 if (!DSA_generate_key(dsa_params)) goto end;
689 if (!EVP_PKEY_assign_DSA(pkey,dsa_params)) goto end;
690 dsa_params=NULL;
692 #endif
694 app_RAND_write_file(randfile, bio_err);
696 if (pkey == NULL) goto end;
698 if (keyout == NULL)
700 keyout=NCONF_get_string(req_conf,SECTION,KEYFILE);
701 if (keyout == NULL)
702 ERR_clear_error();
705 if (keyout == NULL)
707 BIO_printf(bio_err,"writing new private key to stdout\n");
708 BIO_set_fp(out,stdout,BIO_NOCLOSE);
709 #ifdef OPENSSL_SYS_VMS
711 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
712 out = BIO_push(tmpbio, out);
714 #endif
716 else
718 BIO_printf(bio_err,"writing new private key to '%s'\n",keyout);
719 if (BIO_write_filename(out,keyout) <= 0)
721 perror(keyout);
722 goto end;
726 p=NCONF_get_string(req_conf,SECTION,"encrypt_rsa_key");
727 if (p == NULL)
729 ERR_clear_error();
730 p=NCONF_get_string(req_conf,SECTION,"encrypt_key");
731 if (p == NULL)
732 ERR_clear_error();
734 if ((p != NULL) && (strcmp(p,"no") == 0))
735 cipher=NULL;
736 if (nodes) cipher=NULL;
738 i=0;
739 loop:
740 if (!PEM_write_bio_PrivateKey(out,pkey,cipher,
741 NULL,0,NULL,passout))
743 if ((ERR_GET_REASON(ERR_peek_error()) ==
744 PEM_R_PROBLEMS_GETTING_PASSWORD) && (i < 3))
746 ERR_clear_error();
747 i++;
748 goto loop;
750 goto end;
752 BIO_printf(bio_err,"-----\n");
755 if (!newreq)
757 /* Since we are using a pre-existing certificate
758 * request, the kludge 'format' info should not be
759 * changed. */
760 kludge= -1;
761 if (infile == NULL)
762 BIO_set_fp(in,stdin,BIO_NOCLOSE);
763 else
765 if (BIO_read_filename(in,infile) <= 0)
767 perror(infile);
768 goto end;
772 if (informat == FORMAT_ASN1)
773 req=d2i_X509_REQ_bio(in,NULL);
774 else if (informat == FORMAT_PEM)
775 req=PEM_read_bio_X509_REQ(in,NULL,NULL,NULL);
776 else
778 BIO_printf(bio_err,"bad input format specified for X509 request\n");
779 goto end;
781 if (req == NULL)
783 BIO_printf(bio_err,"unable to load X509 request\n");
784 goto end;
788 if (newreq || x509)
790 if (pkey == NULL)
792 BIO_printf(bio_err,"you need to specify a private key\n");
793 goto end;
795 #ifndef OPENSSL_NO_DSA
796 if (pkey->type == EVP_PKEY_DSA)
797 digest=EVP_dss1();
798 #endif
799 if (req == NULL)
801 req=X509_REQ_new();
802 if (req == NULL)
804 goto end;
807 i=make_REQ(req,pkey,subj,!x509, chtype);
808 subj=NULL; /* done processing '-subj' option */
809 if ((kludge > 0) && !sk_X509_ATTRIBUTE_num(req->req_info->attributes))
811 sk_X509_ATTRIBUTE_free(req->req_info->attributes);
812 req->req_info->attributes = NULL;
814 if (!i)
816 BIO_printf(bio_err,"problems making Certificate Request\n");
817 goto end;
820 if (x509)
822 EVP_PKEY *tmppkey;
823 X509V3_CTX ext_ctx;
824 if ((x509ss=X509_new()) == NULL) goto end;
826 /* Set version to V3 */
827 if(extensions && !X509_set_version(x509ss, 2)) goto end;
828 if (serial)
830 if (!X509_set_serialNumber(x509ss, serial)) goto end;
832 else
834 if (!rand_serial(NULL,
835 X509_get_serialNumber(x509ss)))
836 goto end;
839 if (!X509_set_issuer_name(x509ss, X509_REQ_get_subject_name(req))) goto end;
840 if (!X509_gmtime_adj(X509_get_notBefore(x509ss),0)) goto end;
841 if (!X509_gmtime_adj(X509_get_notAfter(x509ss), (long)60*60*24*days)) goto end;
842 if (!X509_set_subject_name(x509ss, X509_REQ_get_subject_name(req))) goto end;
843 tmppkey = X509_REQ_get_pubkey(req);
844 if (!tmppkey || !X509_set_pubkey(x509ss,tmppkey)) goto end;
845 EVP_PKEY_free(tmppkey);
847 /* Set up V3 context struct */
849 X509V3_set_ctx(&ext_ctx, x509ss, x509ss, NULL, NULL, 0);
850 X509V3_set_nconf(&ext_ctx, req_conf);
852 /* Add extensions */
853 if(extensions && !X509V3_EXT_add_nconf(req_conf,
854 &ext_ctx, extensions, x509ss))
856 BIO_printf(bio_err,
857 "Error Loading extension section %s\n",
858 extensions);
859 goto end;
862 if (!(i=X509_sign(x509ss,pkey,digest)))
863 goto end;
865 else
867 X509V3_CTX ext_ctx;
869 /* Set up V3 context struct */
871 X509V3_set_ctx(&ext_ctx, NULL, NULL, req, NULL, 0);
872 X509V3_set_nconf(&ext_ctx, req_conf);
874 /* Add extensions */
875 if(req_exts && !X509V3_EXT_REQ_add_nconf(req_conf,
876 &ext_ctx, req_exts, req))
878 BIO_printf(bio_err,
879 "Error Loading extension section %s\n",
880 req_exts);
881 goto end;
883 if (!(i=X509_REQ_sign(req,pkey,digest)))
884 goto end;
888 if (subj && x509)
890 BIO_printf(bio_err, "Cannot modifiy certificate subject\n");
891 goto end;
894 if (subj && !x509)
896 if (verbose)
898 BIO_printf(bio_err, "Modifying Request's Subject\n");
899 print_name(bio_err, "old subject=", X509_REQ_get_subject_name(req), nmflag);
902 if (build_subject(req, subj, chtype) == 0)
904 BIO_printf(bio_err, "ERROR: cannot modify subject\n");
905 ex=1;
906 goto end;
909 req->req_info->enc.modified = 1;
911 if (verbose)
913 print_name(bio_err, "new subject=", X509_REQ_get_subject_name(req), nmflag);
917 if (verify && !x509)
919 int tmp=0;
921 if (pkey == NULL)
923 pkey=X509_REQ_get_pubkey(req);
924 tmp=1;
925 if (pkey == NULL) goto end;
928 i=X509_REQ_verify(req,pkey);
929 if (tmp) {
930 EVP_PKEY_free(pkey);
931 pkey=NULL;
934 if (i < 0)
936 goto end;
938 else if (i == 0)
940 BIO_printf(bio_err,"verify failure\n");
941 ERR_print_errors(bio_err);
943 else /* if (i > 0) */
944 BIO_printf(bio_err,"verify OK\n");
947 if (noout && !text && !modulus && !subject && !pubkey)
949 ex=0;
950 goto end;
953 if (outfile == NULL)
955 BIO_set_fp(out,stdout,BIO_NOCLOSE);
956 #ifdef OPENSSL_SYS_VMS
958 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
959 out = BIO_push(tmpbio, out);
961 #endif
963 else
965 if ((keyout != NULL) && (strcmp(outfile,keyout) == 0))
966 i=(int)BIO_append_filename(out,outfile);
967 else
968 i=(int)BIO_write_filename(out,outfile);
969 if (!i)
971 perror(outfile);
972 goto end;
976 if (pubkey)
978 EVP_PKEY *tpubkey;
979 tpubkey=X509_REQ_get_pubkey(req);
980 if (tpubkey == NULL)
982 BIO_printf(bio_err,"Error getting public key\n");
983 ERR_print_errors(bio_err);
984 goto end;
986 PEM_write_bio_PUBKEY(out, tpubkey);
987 EVP_PKEY_free(tpubkey);
990 if (text)
992 if (x509)
993 X509_print_ex(out, x509ss, nmflag, reqflag);
994 else
995 X509_REQ_print_ex(out, req, nmflag, reqflag);
998 if(subject)
1000 if(x509)
1001 print_name(out, "subject=", X509_get_subject_name(x509ss), nmflag);
1002 else
1003 print_name(out, "subject=", X509_REQ_get_subject_name(req), nmflag);
1006 if (modulus)
1008 EVP_PKEY *tpubkey;
1010 if (x509)
1011 tpubkey=X509_get_pubkey(x509ss);
1012 else
1013 tpubkey=X509_REQ_get_pubkey(req);
1014 if (tpubkey == NULL)
1016 fprintf(stdout,"Modulus=unavailable\n");
1017 goto end;
1019 fprintf(stdout,"Modulus=");
1020 #ifndef OPENSSL_NO_RSA
1021 if (tpubkey->type == EVP_PKEY_RSA)
1022 BN_print(out,tpubkey->pkey.rsa->n);
1023 else
1024 #endif
1025 fprintf(stdout,"Wrong Algorithm type");
1026 EVP_PKEY_free(tpubkey);
1027 fprintf(stdout,"\n");
1030 if (!noout && !x509)
1032 if (outformat == FORMAT_ASN1)
1033 i=i2d_X509_REQ_bio(out,req);
1034 else if (outformat == FORMAT_PEM) {
1035 if(newhdr) i=PEM_write_bio_X509_REQ_NEW(out,req);
1036 else i=PEM_write_bio_X509_REQ(out,req);
1037 } else {
1038 BIO_printf(bio_err,"bad output format specified for outfile\n");
1039 goto end;
1041 if (!i)
1043 BIO_printf(bio_err,"unable to write X509 request\n");
1044 goto end;
1047 if (!noout && x509 && (x509ss != NULL))
1049 if (outformat == FORMAT_ASN1)
1050 i=i2d_X509_bio(out,x509ss);
1051 else if (outformat == FORMAT_PEM)
1052 i=PEM_write_bio_X509(out,x509ss);
1053 else {
1054 BIO_printf(bio_err,"bad output format specified for outfile\n");
1055 goto end;
1057 if (!i)
1059 BIO_printf(bio_err,"unable to write X509 certificate\n");
1060 goto end;
1063 ex=0;
1064 end:
1065 #ifndef MONOLITH
1066 if(to_free)
1067 OPENSSL_free(to_free);
1068 #endif
1069 if (ex)
1071 ERR_print_errors(bio_err);
1073 if ((req_conf != NULL) && (req_conf != config)) NCONF_free(req_conf);
1074 BIO_free(in);
1075 BIO_free_all(out);
1076 EVP_PKEY_free(pkey);
1077 X509_REQ_free(req);
1078 X509_free(x509ss);
1079 ASN1_INTEGER_free(serial);
1080 if(passargin && passin) OPENSSL_free(passin);
1081 if(passargout && passout) OPENSSL_free(passout);
1082 OBJ_cleanup();
1083 #ifndef OPENSSL_NO_DSA
1084 if (dsa_params != NULL) DSA_free(dsa_params);
1085 #endif
1086 apps_shutdown();
1087 OPENSSL_EXIT(ex);
1090 static int make_REQ(X509_REQ *req, EVP_PKEY *pkey, char *subj, int attribs,
1091 unsigned long chtype)
1093 int ret=0,i;
1094 char no_prompt = 0;
1095 STACK_OF(CONF_VALUE) *dn_sk, *attr_sk = NULL;
1096 char *tmp, *dn_sect,*attr_sect;
1098 tmp=NCONF_get_string(req_conf,SECTION,PROMPT);
1099 if (tmp == NULL)
1100 ERR_clear_error();
1101 if((tmp != NULL) && !strcmp(tmp, "no")) no_prompt = 1;
1103 dn_sect=NCONF_get_string(req_conf,SECTION,DISTINGUISHED_NAME);
1104 if (dn_sect == NULL)
1106 BIO_printf(bio_err,"unable to find '%s' in config\n",
1107 DISTINGUISHED_NAME);
1108 goto err;
1110 dn_sk=NCONF_get_section(req_conf,dn_sect);
1111 if (dn_sk == NULL)
1113 BIO_printf(bio_err,"unable to get '%s' section\n",dn_sect);
1114 goto err;
1117 attr_sect=NCONF_get_string(req_conf,SECTION,ATTRIBUTES);
1118 if (attr_sect == NULL)
1120 ERR_clear_error();
1121 attr_sk=NULL;
1123 else
1125 attr_sk=NCONF_get_section(req_conf,attr_sect);
1126 if (attr_sk == NULL)
1128 BIO_printf(bio_err,"unable to get '%s' section\n",attr_sect);
1129 goto err;
1133 /* setup version number */
1134 if (!X509_REQ_set_version(req,0L)) goto err; /* version 1 */
1136 if (no_prompt)
1137 i = auto_info(req, dn_sk, attr_sk, attribs, chtype);
1138 else
1140 if (subj)
1141 i = build_subject(req, subj, chtype);
1142 else
1143 i = prompt_info(req, dn_sk, dn_sect, attr_sk, attr_sect, attribs, chtype);
1145 if(!i) goto err;
1147 if (!X509_REQ_set_pubkey(req,pkey)) goto err;
1149 ret=1;
1150 err:
1151 return(ret);
1155 * subject is expected to be in the format /type0=value0/type1=value1/type2=...
1156 * where characters may be escaped by \
1158 static int build_subject(X509_REQ *req, char *subject, unsigned long chtype)
1160 X509_NAME *n;
1162 if (!(n = do_subject(subject, chtype)))
1163 return 0;
1165 if (!X509_REQ_set_subject_name(req, n))
1167 X509_NAME_free(n);
1168 return 0;
1170 X509_NAME_free(n);
1171 return 1;
1175 static int prompt_info(X509_REQ *req,
1176 STACK_OF(CONF_VALUE) *dn_sk, char *dn_sect,
1177 STACK_OF(CONF_VALUE) *attr_sk, char *attr_sect, int attribs,
1178 unsigned long chtype)
1180 int i;
1181 char *p,*q;
1182 char buf[100];
1183 int nid;
1184 long n_min,n_max;
1185 char *type,*def,*value;
1186 CONF_VALUE *v;
1187 X509_NAME *subj;
1188 subj = X509_REQ_get_subject_name(req);
1190 if(!batch)
1192 BIO_printf(bio_err,"You are about to be asked to enter information that will be incorporated\n");
1193 BIO_printf(bio_err,"into your certificate request.\n");
1194 BIO_printf(bio_err,"What you are about to enter is what is called a Distinguished Name or a DN.\n");
1195 BIO_printf(bio_err,"There are quite a few fields but you can leave some blank\n");
1196 BIO_printf(bio_err,"For some fields there will be a default value,\n");
1197 BIO_printf(bio_err,"If you enter '.', the field will be left blank.\n");
1198 BIO_printf(bio_err,"-----\n");
1202 if (sk_CONF_VALUE_num(dn_sk))
1204 i= -1;
1205 start: for (;;)
1207 i++;
1208 if (sk_CONF_VALUE_num(dn_sk) <= i) break;
1210 v=sk_CONF_VALUE_value(dn_sk,i);
1211 p=q=NULL;
1212 type=v->name;
1213 if(!check_end(type,"_min") || !check_end(type,"_max") ||
1214 !check_end(type,"_default") ||
1215 !check_end(type,"_value")) continue;
1216 /* Skip past any leading X. X: X, etc to allow for
1217 * multiple instances
1219 for(p = v->name; *p ; p++)
1220 if ((*p == ':') || (*p == ',') ||
1221 (*p == '.')) {
1222 p++;
1223 if(*p) type = p;
1224 break;
1226 /* If OBJ not recognised ignore it */
1227 if ((nid=OBJ_txt2nid(type)) == NID_undef) goto start;
1228 if (BIO_snprintf(buf,sizeof buf,"%s_default",v->name)
1229 >= sizeof buf)
1231 BIO_printf(bio_err,"Name '%s' too long\n",v->name);
1232 return 0;
1235 if ((def=NCONF_get_string(req_conf,dn_sect,buf)) == NULL)
1237 ERR_clear_error();
1238 def="";
1241 BIO_snprintf(buf,sizeof buf,"%s_value",v->name);
1242 if ((value=NCONF_get_string(req_conf,dn_sect,buf)) == NULL)
1244 ERR_clear_error();
1245 value=NULL;
1248 BIO_snprintf(buf,sizeof buf,"%s_min",v->name);
1249 if (!NCONF_get_number(req_conf,dn_sect,buf, &n_min))
1251 ERR_clear_error();
1252 n_min = -1;
1255 BIO_snprintf(buf,sizeof buf,"%s_max",v->name);
1256 if (!NCONF_get_number(req_conf,dn_sect,buf, &n_max))
1258 ERR_clear_error();
1259 n_max = -1;
1262 if (!add_DN_object(subj,v->value,def,value,nid,
1263 n_min,n_max, chtype))
1264 return 0;
1266 if (X509_NAME_entry_count(subj) == 0)
1268 BIO_printf(bio_err,"error, no objects specified in config file\n");
1269 return 0;
1272 if (attribs)
1274 if ((attr_sk != NULL) && (sk_CONF_VALUE_num(attr_sk) > 0) && (!batch))
1276 BIO_printf(bio_err,"\nPlease enter the following 'extra' attributes\n");
1277 BIO_printf(bio_err,"to be sent with your certificate request\n");
1280 i= -1;
1281 start2: for (;;)
1283 i++;
1284 if ((attr_sk == NULL) ||
1285 (sk_CONF_VALUE_num(attr_sk) <= i))
1286 break;
1288 v=sk_CONF_VALUE_value(attr_sk,i);
1289 type=v->name;
1290 if ((nid=OBJ_txt2nid(type)) == NID_undef)
1291 goto start2;
1293 if (BIO_snprintf(buf,sizeof buf,"%s_default",type)
1294 >= sizeof buf)
1296 BIO_printf(bio_err,"Name '%s' too long\n",v->name);
1297 return 0;
1300 if ((def=NCONF_get_string(req_conf,attr_sect,buf))
1301 == NULL)
1303 ERR_clear_error();
1304 def="";
1308 BIO_snprintf(buf,sizeof buf,"%s_value",type);
1309 if ((value=NCONF_get_string(req_conf,attr_sect,buf))
1310 == NULL)
1312 ERR_clear_error();
1313 value=NULL;
1316 BIO_snprintf(buf,sizeof buf,"%s_min",type);
1317 if (!NCONF_get_number(req_conf,attr_sect,buf, &n_min))
1318 n_min = -1;
1320 BIO_snprintf(buf,sizeof buf,"%s_max",type);
1321 if (!NCONF_get_number(req_conf,attr_sect,buf, &n_max))
1322 n_max = -1;
1324 if (!add_attribute_object(req,
1325 v->value,def,value,nid,n_min,n_max, chtype))
1326 return 0;
1330 else
1332 BIO_printf(bio_err,"No template, please set one up.\n");
1333 return 0;
1336 return 1;
1340 static int auto_info(X509_REQ *req, STACK_OF(CONF_VALUE) *dn_sk,
1341 STACK_OF(CONF_VALUE) *attr_sk, int attribs, unsigned long chtype)
1343 int i;
1344 char *p,*q;
1345 char *type;
1346 CONF_VALUE *v;
1347 X509_NAME *subj;
1349 subj = X509_REQ_get_subject_name(req);
1351 for (i = 0; i < sk_CONF_VALUE_num(dn_sk); i++)
1353 v=sk_CONF_VALUE_value(dn_sk,i);
1354 p=q=NULL;
1355 type=v->name;
1356 /* Skip past any leading X. X: X, etc to allow for
1357 * multiple instances
1359 for(p = v->name; *p ; p++)
1360 #ifndef CHARSET_EBCDIC
1361 if ((*p == ':') || (*p == ',') || (*p == '.')) {
1362 #else
1363 if ((*p == os_toascii[':']) || (*p == os_toascii[',']) || (*p == os_toascii['.'])) {
1364 #endif
1365 p++;
1366 if(*p) type = p;
1367 break;
1369 if (!X509_NAME_add_entry_by_txt(subj,type, chtype,
1370 (unsigned char *) v->value,-1,-1,0)) return 0;
1374 if (!X509_NAME_entry_count(subj))
1376 BIO_printf(bio_err,"error, no objects specified in config file\n");
1377 return 0;
1379 if (attribs)
1381 for (i = 0; i < sk_CONF_VALUE_num(attr_sk); i++)
1383 v=sk_CONF_VALUE_value(attr_sk,i);
1384 if(!X509_REQ_add1_attr_by_txt(req, v->name, chtype,
1385 (unsigned char *)v->value, -1)) return 0;
1388 return 1;
1392 static int add_DN_object(X509_NAME *n, char *text, char *def, char *value,
1393 int nid, int n_min, int n_max, unsigned long chtype)
1395 int i,ret=0;
1396 MS_STATIC char buf[1024];
1397 start:
1398 if (!batch) BIO_printf(bio_err,"%s [%s]:",text,def);
1399 (void)BIO_flush(bio_err);
1400 if(value != NULL)
1402 BUF_strlcpy(buf,value,sizeof buf);
1403 BUF_strlcat(buf,"\n",sizeof buf);
1404 BIO_printf(bio_err,"%s\n",value);
1406 else
1408 buf[0]='\0';
1409 if (!batch)
1411 fgets(buf,sizeof buf,stdin);
1413 else
1415 buf[0] = '\n';
1416 buf[1] = '\0';
1420 if (buf[0] == '\0') return(0);
1421 else if (buf[0] == '\n')
1423 if ((def == NULL) || (def[0] == '\0'))
1424 return(1);
1425 BUF_strlcpy(buf,def,sizeof buf);
1426 BUF_strlcat(buf,"\n",sizeof buf);
1428 else if ((buf[0] == '.') && (buf[1] == '\n')) return(1);
1430 i=strlen(buf);
1431 if (buf[i-1] != '\n')
1433 BIO_printf(bio_err,"weird input :-(\n");
1434 return(0);
1436 buf[--i]='\0';
1437 #ifdef CHARSET_EBCDIC
1438 ebcdic2ascii(buf, buf, i);
1439 #endif
1440 if(!req_check_len(i, n_min, n_max)) goto start;
1441 if (!X509_NAME_add_entry_by_NID(n,nid, chtype,
1442 (unsigned char *) buf, -1,-1,0)) goto err;
1443 ret=1;
1444 err:
1445 return(ret);
1448 static int add_attribute_object(X509_REQ *req, char *text,
1449 char *def, char *value, int nid, int n_min,
1450 int n_max, unsigned long chtype)
1452 int i;
1453 static char buf[1024];
1455 start:
1456 if (!batch) BIO_printf(bio_err,"%s [%s]:",text,def);
1457 (void)BIO_flush(bio_err);
1458 if (value != NULL)
1460 BUF_strlcpy(buf,value,sizeof buf);
1461 BUF_strlcat(buf,"\n",sizeof buf);
1462 BIO_printf(bio_err,"%s\n",value);
1464 else
1466 buf[0]='\0';
1467 if (!batch)
1469 fgets(buf,sizeof buf,stdin);
1471 else
1473 buf[0] = '\n';
1474 buf[1] = '\0';
1478 if (buf[0] == '\0') return(0);
1479 else if (buf[0] == '\n')
1481 if ((def == NULL) || (def[0] == '\0'))
1482 return(1);
1483 BUF_strlcpy(buf,def,sizeof buf);
1484 BUF_strlcat(buf,"\n",sizeof buf);
1486 else if ((buf[0] == '.') && (buf[1] == '\n')) return(1);
1488 i=strlen(buf);
1489 if (buf[i-1] != '\n')
1491 BIO_printf(bio_err,"weird input :-(\n");
1492 return(0);
1494 buf[--i]='\0';
1495 #ifdef CHARSET_EBCDIC
1496 ebcdic2ascii(buf, buf, i);
1497 #endif
1498 if(!req_check_len(i, n_min, n_max)) goto start;
1500 if(!X509_REQ_add1_attr_by_NID(req, nid, chtype,
1501 (unsigned char *)buf, -1)) {
1502 BIO_printf(bio_err, "Error adding attribute\n");
1503 ERR_print_errors(bio_err);
1504 goto err;
1507 return(1);
1508 err:
1509 return(0);
1512 #ifndef OPENSSL_NO_RSA
1513 static void MS_CALLBACK req_cb(int p, int n, void *arg)
1515 char c='*';
1517 if (p == 0) c='.';
1518 if (p == 1) c='+';
1519 if (p == 2) c='*';
1520 if (p == 3) c='\n';
1521 BIO_write((BIO *)arg,&c,1);
1522 (void)BIO_flush((BIO *)arg);
1523 #ifdef LINT
1524 p=n;
1525 #endif
1527 #endif
1529 static int req_check_len(int len, int n_min, int n_max)
1531 if ((n_min > 0) && (len < n_min))
1533 BIO_printf(bio_err,"string is too short, it needs to be at least %d bytes long\n",n_min);
1534 return(0);
1536 if ((n_max >= 0) && (len > n_max))
1538 BIO_printf(bio_err,"string is too long, it needs to be less than %d bytes long\n",n_max);
1539 return(0);
1541 return(1);
1544 /* Check if the end of a string matches 'end' */
1545 static int check_end(char *str, char *end)
1547 int elen, slen;
1548 char *tmp;
1549 elen = strlen(end);
1550 slen = strlen(str);
1551 if(elen > slen) return 1;
1552 tmp = str + slen - elen;
1553 return strcmp(tmp, end);