dsaparam.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  1. /* apps/dsaparam.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. #include <openssl/opensslconf.h> /* for OPENSSL_NO_DSA */
  59. /* Until the key-gen callbacks are modified to use newer prototypes, we allow
  60. * deprecated functions for openssl-internal code */
  61. #ifdef OPENSSL_NO_DEPRECATED
  62. #undef OPENSSL_NO_DEPRECATED
  63. #endif
  64. #ifndef OPENSSL_NO_DSA
  65. #include <assert.h>
  66. #include <stdio.h>
  67. #include <stdlib.h>
  68. #include <time.h>
  69. #include <string.h>
  70. #include "apps.h"
  71. #include <openssl/bio.h>
  72. #include <openssl/err.h>
  73. #include <openssl/bn.h>
  74. #include <openssl/dsa.h>
  75. #include <openssl/x509.h>
  76. #include <openssl/pem.h>
  77. #undef PROG
  78. #define PROG dsaparam_main
  79. /* -inform arg - input format - default PEM (DER or PEM)
  80. * -outform arg - output format - default PEM
  81. * -in arg - input file - default stdin
  82. * -out arg - output file - default stdout
  83. * -noout
  84. * -text
  85. * -C
  86. * -noout
  87. * -genkey
  88. * #ifdef GENCB_TEST
  89. * -timebomb n - interrupt keygen after <n> seconds
  90. * #endif
  91. */
  92. #ifdef GENCB_TEST
  93. static int stop_keygen_flag = 0;
  94. static void timebomb_sigalarm(int foo)
  95. {
  96. stop_keygen_flag = 1;
  97. }
  98. #endif
  99. static int MS_CALLBACK dsa_cb(int p, int n, BN_GENCB *cb);
  100. int MAIN(int, char **);
  101. int MAIN(int argc, char **argv)
  102. {
  103. DSA *dsa=NULL;
  104. int i,badops=0,text=0;
  105. BIO *in=NULL,*out=NULL;
  106. int informat,outformat,noout=0,C=0,ret=1;
  107. char *infile,*outfile,*prog,*inrand=NULL;
  108. int numbits= -1,num,genkey=0;
  109. int need_rand=0;
  110. int non_fips_allow = 0;
  111. #ifndef OPENSSL_NO_ENGINE
  112. char *engine=NULL;
  113. #endif
  114. #ifdef GENCB_TEST
  115. int timebomb=0;
  116. #endif
  117. apps_startup();
  118. if (bio_err == NULL)
  119. if ((bio_err=BIO_new(BIO_s_file())) != NULL)
  120. BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
  121. if (!load_config(bio_err, NULL))
  122. goto end;
  123. infile=NULL;
  124. outfile=NULL;
  125. informat=FORMAT_PEM;
  126. outformat=FORMAT_PEM;
  127. prog=argv[0];
  128. argc--;
  129. argv++;
  130. while (argc >= 1)
  131. {
  132. if (strcmp(*argv,"-inform") == 0)
  133. {
  134. if (--argc < 1) goto bad;
  135. informat=str2fmt(*(++argv));
  136. }
  137. else if (strcmp(*argv,"-outform") == 0)
  138. {
  139. if (--argc < 1) goto bad;
  140. outformat=str2fmt(*(++argv));
  141. }
  142. else if (strcmp(*argv,"-in") == 0)
  143. {
  144. if (--argc < 1) goto bad;
  145. infile= *(++argv);
  146. }
  147. else if (strcmp(*argv,"-out") == 0)
  148. {
  149. if (--argc < 1) goto bad;
  150. outfile= *(++argv);
  151. }
  152. #ifndef OPENSSL_NO_ENGINE
  153. else if(strcmp(*argv, "-engine") == 0)
  154. {
  155. if (--argc < 1) goto bad;
  156. engine = *(++argv);
  157. }
  158. #endif
  159. #ifdef GENCB_TEST
  160. else if(strcmp(*argv, "-timebomb") == 0)
  161. {
  162. if (--argc < 1) goto bad;
  163. timebomb = atoi(*(++argv));
  164. }
  165. #endif
  166. else if (strcmp(*argv,"-text") == 0)
  167. text=1;
  168. else if (strcmp(*argv,"-C") == 0)
  169. C=1;
  170. else if (strcmp(*argv,"-genkey") == 0)
  171. {
  172. genkey=1;
  173. need_rand=1;
  174. }
  175. else if (strcmp(*argv,"-rand") == 0)
  176. {
  177. if (--argc < 1) goto bad;
  178. inrand= *(++argv);
  179. need_rand=1;
  180. }
  181. else if (strcmp(*argv,"-noout") == 0)
  182. noout=1;
  183. else if (strcmp(*argv,"-non-fips-allow") == 0)
  184. non_fips_allow = 1;
  185. else if (sscanf(*argv,"%d",&num) == 1)
  186. {
  187. /* generate a key */
  188. numbits=num;
  189. need_rand=1;
  190. }
  191. else
  192. {
  193. BIO_printf(bio_err,"unknown option %s\n",*argv);
  194. badops=1;
  195. break;
  196. }
  197. argc--;
  198. argv++;
  199. }
  200. if (badops)
  201. {
  202. bad:
  203. BIO_printf(bio_err,"%s [options] [bits] <infile >outfile\n",prog);
  204. BIO_printf(bio_err,"where options are\n");
  205. BIO_printf(bio_err," -inform arg input format - DER or PEM\n");
  206. BIO_printf(bio_err," -outform arg output format - DER or PEM\n");
  207. BIO_printf(bio_err," -in arg input file\n");
  208. BIO_printf(bio_err," -out arg output file\n");
  209. BIO_printf(bio_err," -text print as text\n");
  210. BIO_printf(bio_err," -C Output C code\n");
  211. BIO_printf(bio_err," -noout no output\n");
  212. BIO_printf(bio_err," -genkey generate a DSA key\n");
  213. BIO_printf(bio_err," -rand files to use for random number input\n");
  214. #ifndef OPENSSL_NO_ENGINE
  215. BIO_printf(bio_err," -engine e use engine e, possibly a hardware device.\n");
  216. #endif
  217. #ifdef GENCB_TEST
  218. BIO_printf(bio_err," -timebomb n interrupt keygen after <n> seconds\n");
  219. #endif
  220. BIO_printf(bio_err," number number of bits to use for generating private key\n");
  221. goto end;
  222. }
  223. ERR_load_crypto_strings();
  224. in=BIO_new(BIO_s_file());
  225. out=BIO_new(BIO_s_file());
  226. if ((in == NULL) || (out == NULL))
  227. {
  228. ERR_print_errors(bio_err);
  229. goto end;
  230. }
  231. if (infile == NULL)
  232. BIO_set_fp(in,stdin,BIO_NOCLOSE);
  233. else
  234. {
  235. if (BIO_read_filename(in,infile) <= 0)
  236. {
  237. perror(infile);
  238. goto end;
  239. }
  240. }
  241. if (outfile == NULL)
  242. {
  243. BIO_set_fp(out,stdout,BIO_NOCLOSE);
  244. #ifdef OPENSSL_SYS_VMS
  245. {
  246. BIO *tmpbio = BIO_new(BIO_f_linebuffer());
  247. out = BIO_push(tmpbio, out);
  248. }
  249. #endif
  250. }
  251. else
  252. {
  253. if (BIO_write_filename(out,outfile) <= 0)
  254. {
  255. perror(outfile);
  256. goto end;
  257. }
  258. }
  259. #ifndef OPENSSL_NO_ENGINE
  260. setup_engine(bio_err, engine, 0);
  261. #endif
  262. if (need_rand)
  263. {
  264. app_RAND_load_file(NULL, bio_err, (inrand != NULL));
  265. if (inrand != NULL)
  266. BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
  267. app_RAND_load_files(inrand));
  268. }
  269. if (numbits > 0)
  270. {
  271. BN_GENCB cb;
  272. BN_GENCB_set(&cb, dsa_cb, bio_err);
  273. assert(need_rand);
  274. dsa = DSA_new();
  275. if(!dsa)
  276. {
  277. BIO_printf(bio_err,"Error allocating DSA object\n");
  278. goto end;
  279. }
  280. if (non_fips_allow)
  281. dsa->flags |= DSA_FLAG_NON_FIPS_ALLOW;
  282. BIO_printf(bio_err,"Generating DSA parameters, %d bit long prime\n",num);
  283. BIO_printf(bio_err,"This could take some time\n");
  284. #ifdef GENCB_TEST
  285. if(timebomb > 0)
  286. {
  287. struct sigaction act;
  288. act.sa_handler = timebomb_sigalarm;
  289. act.sa_flags = 0;
  290. BIO_printf(bio_err,"(though I'll stop it if not done within %d secs)\n",
  291. timebomb);
  292. if(sigaction(SIGALRM, &act, NULL) != 0)
  293. {
  294. BIO_printf(bio_err,"Error, couldn't set SIGALRM handler\n");
  295. goto end;
  296. }
  297. alarm(timebomb);
  298. }
  299. #endif
  300. if(!DSA_generate_parameters_ex(dsa,num,NULL,0,NULL,NULL, &cb))
  301. {
  302. #ifdef GENCB_TEST
  303. if(stop_keygen_flag)
  304. {
  305. BIO_printf(bio_err,"DSA key generation time-stopped\n");
  306. /* This is an asked-for behaviour! */
  307. ret = 0;
  308. goto end;
  309. }
  310. #endif
  311. ERR_print_errors(bio_err);
  312. BIO_printf(bio_err,"Error, DSA key generation failed\n");
  313. goto end;
  314. }
  315. }
  316. else if (informat == FORMAT_ASN1)
  317. dsa=d2i_DSAparams_bio(in,NULL);
  318. else if (informat == FORMAT_PEM)
  319. dsa=PEM_read_bio_DSAparams(in,NULL,NULL,NULL);
  320. else
  321. {
  322. BIO_printf(bio_err,"bad input format specified\n");
  323. goto end;
  324. }
  325. if (dsa == NULL)
  326. {
  327. BIO_printf(bio_err,"unable to load DSA parameters\n");
  328. ERR_print_errors(bio_err);
  329. goto end;
  330. }
  331. if (text)
  332. {
  333. DSAparams_print(out,dsa);
  334. }
  335. if (C)
  336. {
  337. unsigned char *data;
  338. int l,len,bits_p;
  339. len=BN_num_bytes(dsa->p);
  340. bits_p=BN_num_bits(dsa->p);
  341. data=(unsigned char *)OPENSSL_malloc(len+20);
  342. if (data == NULL)
  343. {
  344. perror("OPENSSL_malloc");
  345. goto end;
  346. }
  347. l=BN_bn2bin(dsa->p,data);
  348. printf("static unsigned char dsa%d_p[]={",bits_p);
  349. for (i=0; i<l; i++)
  350. {
  351. if ((i%12) == 0) printf("\n\t");
  352. printf("0x%02X,",data[i]);
  353. }
  354. printf("\n\t};\n");
  355. l=BN_bn2bin(dsa->q,data);
  356. printf("static unsigned char dsa%d_q[]={",bits_p);
  357. for (i=0; i<l; i++)
  358. {
  359. if ((i%12) == 0) printf("\n\t");
  360. printf("0x%02X,",data[i]);
  361. }
  362. printf("\n\t};\n");
  363. l=BN_bn2bin(dsa->g,data);
  364. printf("static unsigned char dsa%d_g[]={",bits_p);
  365. for (i=0; i<l; i++)
  366. {
  367. if ((i%12) == 0) printf("\n\t");
  368. printf("0x%02X,",data[i]);
  369. }
  370. printf("\n\t};\n\n");
  371. printf("DSA *get_dsa%d()\n\t{\n",bits_p);
  372. printf("\tDSA *dsa;\n\n");
  373. printf("\tif ((dsa=DSA_new()) == NULL) return(NULL);\n");
  374. printf("\tdsa->p=BN_bin2bn(dsa%d_p,sizeof(dsa%d_p),NULL);\n",
  375. bits_p,bits_p);
  376. printf("\tdsa->q=BN_bin2bn(dsa%d_q,sizeof(dsa%d_q),NULL);\n",
  377. bits_p,bits_p);
  378. printf("\tdsa->g=BN_bin2bn(dsa%d_g,sizeof(dsa%d_g),NULL);\n",
  379. bits_p,bits_p);
  380. printf("\tif ((dsa->p == NULL) || (dsa->q == NULL) || (dsa->g == NULL))\n");
  381. printf("\t\t{ DSA_free(dsa); return(NULL); }\n");
  382. printf("\treturn(dsa);\n\t}\n");
  383. }
  384. if (!noout)
  385. {
  386. if (outformat == FORMAT_ASN1)
  387. i=i2d_DSAparams_bio(out,dsa);
  388. else if (outformat == FORMAT_PEM)
  389. i=PEM_write_bio_DSAparams(out,dsa);
  390. else {
  391. BIO_printf(bio_err,"bad output format specified for outfile\n");
  392. goto end;
  393. }
  394. if (!i)
  395. {
  396. BIO_printf(bio_err,"unable to write DSA parameters\n");
  397. ERR_print_errors(bio_err);
  398. goto end;
  399. }
  400. }
  401. if (genkey)
  402. {
  403. DSA *dsakey;
  404. assert(need_rand);
  405. if ((dsakey=DSAparams_dup(dsa)) == NULL) goto end;
  406. if (non_fips_allow)
  407. dsakey->flags |= DSA_FLAG_NON_FIPS_ALLOW;
  408. if (!DSA_generate_key(dsakey))
  409. {
  410. ERR_print_errors(bio_err);
  411. DSA_free(dsakey);
  412. goto end;
  413. }
  414. if (outformat == FORMAT_ASN1)
  415. i=i2d_DSAPrivateKey_bio(out,dsakey);
  416. else if (outformat == FORMAT_PEM)
  417. i=PEM_write_bio_DSAPrivateKey(out,dsakey,NULL,NULL,0,NULL,NULL);
  418. else {
  419. BIO_printf(bio_err,"bad output format specified for outfile\n");
  420. DSA_free(dsakey);
  421. goto end;
  422. }
  423. DSA_free(dsakey);
  424. }
  425. if (need_rand)
  426. app_RAND_write_file(NULL, bio_err);
  427. ret=0;
  428. end:
  429. if (in != NULL) BIO_free(in);
  430. if (out != NULL) BIO_free_all(out);
  431. if (dsa != NULL) DSA_free(dsa);
  432. apps_shutdown();
  433. OPENSSL_EXIT(ret);
  434. }
  435. static int MS_CALLBACK dsa_cb(int p, int n, BN_GENCB *cb)
  436. {
  437. char c='*';
  438. if (p == 0) c='.';
  439. if (p == 1) c='+';
  440. if (p == 2) c='*';
  441. if (p == 3) c='\n';
  442. BIO_write(cb->arg,&c,1);
  443. (void)BIO_flush(cb->arg);
  444. #ifdef LINT
  445. p=n;
  446. #endif
  447. #ifdef GENCB_TEST
  448. if(stop_keygen_flag)
  449. return 0;
  450. #endif
  451. return 1;
  452. }
  453. #else /* !OPENSSL_NO_DSA */
  454. # if PEDANTIC
  455. static void *dummy=&dummy;
  456. # endif
  457. #endif