[BACK]Return to dsaparam.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / openssl

Annotation of src/usr.bin/openssl/dsaparam.c, Revision 1.5

1.5     ! bcook       1: /* $OpenBSD: dsaparam.c,v 1.4 2015/08/22 16:36:05 jsing Exp $ */
1.1       jsing       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 <openssl/opensslconf.h>       /* for OPENSSL_NO_DSA */
                     60:
                     61: /* Until the key-gen callbacks are modified to use newer prototypes, we allow
                     62:  * deprecated functions for openssl-internal code */
                     63: #ifdef OPENSSL_NO_DEPRECATED
                     64: #undef OPENSSL_NO_DEPRECATED
                     65: #endif
                     66:
1.3       doug       67: #include <limits.h>
1.1       jsing      68: #include <stdio.h>
                     69: #include <stdlib.h>
                     70: #include <string.h>
                     71: #include <time.h>
                     72:
                     73: #include "apps.h"
                     74:
                     75: #include <openssl/bio.h>
                     76: #include <openssl/bn.h>
                     77: #include <openssl/err.h>
                     78: #include <openssl/dsa.h>
                     79: #include <openssl/pem.h>
                     80: #include <openssl/x509.h>
                     81:
1.3       doug       82: static struct {
                     83:        int C;
                     84:        int genkey;
                     85:        char *infile;
                     86:        int informat;
                     87:        int noout;
                     88:        char *outfile;
                     89:        int outformat;
                     90:        int text;
                     91: } dsaparam_config;
                     92:
                     93: static struct option dsaparam_options[] = {
                     94:        {
                     95:                .name = "C",
                     96:                .desc = "Convert DSA parameters into C code",
                     97:                .type = OPTION_FLAG,
                     98:                .opt.flag = &dsaparam_config.C,
                     99:        },
                    100:        {
                    101:                .name = "genkey",
                    102:                .desc = "Generate a DSA key",
                    103:                .type = OPTION_FLAG,
                    104:                .opt.flag = &dsaparam_config.genkey,
                    105:        },
                    106:        {
                    107:                .name = "in",
                    108:                .argname = "file",
                    109:                .desc = "Input file (default stdin)",
                    110:                .type = OPTION_ARG,
                    111:                .opt.arg = &dsaparam_config.infile,
                    112:        },
                    113:        {
                    114:                .name = "inform",
                    115:                .argname = "format",
                    116:                .desc = "Input format (DER or PEM (default))",
                    117:                .type = OPTION_ARG_FORMAT,
                    118:                .opt.value = &dsaparam_config.informat,
                    119:        },
                    120:        {
                    121:                .name = "noout",
                    122:                .desc = "No output",
                    123:                .type = OPTION_FLAG,
                    124:                .opt.flag = &dsaparam_config.noout,
                    125:        },
                    126:        {
                    127:                .name = "out",
                    128:                .argname = "file",
                    129:                .desc = "Output file (default stdout)",
                    130:                .type = OPTION_ARG,
                    131:                .opt.arg = &dsaparam_config.outfile,
                    132:        },
                    133:        {
                    134:                .name = "outform",
                    135:                .argname = "format",
                    136:                .desc = "Output format (DER or PEM (default))",
                    137:                .type = OPTION_ARG_FORMAT,
                    138:                .opt.value = &dsaparam_config.outformat,
                    139:        },
                    140:        {
                    141:                .name = "text",
                    142:                .desc = "Print as text",
                    143:                .type = OPTION_FLAG,
                    144:                .opt.flag = &dsaparam_config.text,
                    145:        },
                    146:        { NULL },
                    147: };
1.1       jsing     148:
                    149: static void
1.3       doug      150: dsaparam_usage(void)
1.1       jsing     151: {
1.3       doug      152:        fprintf(stderr,
1.5     ! bcook     153:            "usage: dsaparam [-C] [-genkey] [-in file]\n"
1.3       doug      154:            "    [-inform format] [-noout] [-out file] [-outform format]\n"
                    155:            "    [-text] [numbits]\n\n");
                    156:        options_usage(dsaparam_options);
1.1       jsing     157: }
                    158:
                    159: static int dsa_cb(int p, int n, BN_GENCB * cb);
                    160:
                    161: int
                    162: dsaparam_main(int argc, char **argv)
                    163: {
                    164:        DSA *dsa = NULL;
1.3       doug      165:        int i;
1.1       jsing     166:        BIO *in = NULL, *out = NULL;
1.3       doug      167:        int ret = 1;
                    168:        int numbits = -1;
                    169:        char *strbits = NULL;
                    170:
                    171:        memset(&dsaparam_config, 0, sizeof(dsaparam_config));
                    172:
                    173:        dsaparam_config.informat = FORMAT_PEM;
                    174:        dsaparam_config.outformat = FORMAT_PEM;
1.1       jsing     175:
1.3       doug      176:        if (options_parse(argc, argv, dsaparam_options, &strbits, NULL) != 0) {
                    177:                dsaparam_usage();
                    178:                goto end;
1.1       jsing     179:        }
                    180:
1.3       doug      181:        if (strbits != NULL) {
                    182:                const char *errstr;
                    183:                numbits = strtonum(strbits, 0, INT_MAX, &errstr);
                    184:                if (errstr) {
                    185:                        fprintf(stderr, "Invalid number of bits: %s", errstr);
                    186:                        goto end;
                    187:                }
1.1       jsing     188:        }
                    189:
                    190:        in = BIO_new(BIO_s_file());
                    191:        out = BIO_new(BIO_s_file());
1.3       doug      192:        if (in == NULL || out == NULL) {
1.1       jsing     193:                ERR_print_errors(bio_err);
                    194:                goto end;
                    195:        }
1.3       doug      196:        if (dsaparam_config.infile == NULL)
1.1       jsing     197:                BIO_set_fp(in, stdin, BIO_NOCLOSE);
                    198:        else {
1.3       doug      199:                if (BIO_read_filename(in, dsaparam_config.infile) <= 0) {
                    200:                        perror(dsaparam_config.infile);
1.1       jsing     201:                        goto end;
                    202:                }
                    203:        }
1.3       doug      204:        if (dsaparam_config.outfile == NULL) {
1.1       jsing     205:                BIO_set_fp(out, stdout, BIO_NOCLOSE);
                    206:        } else {
1.3       doug      207:                if (BIO_write_filename(out, dsaparam_config.outfile) <= 0) {
                    208:                        perror(dsaparam_config.outfile);
1.1       jsing     209:                        goto end;
                    210:                }
                    211:        }
                    212:
                    213:        if (numbits > 0) {
                    214:                BN_GENCB cb;
                    215:                BN_GENCB_set(&cb, dsa_cb, bio_err);
                    216:                dsa = DSA_new();
                    217:                if (!dsa) {
                    218:                        BIO_printf(bio_err, "Error allocating DSA object\n");
                    219:                        goto end;
                    220:                }
1.3       doug      221:                BIO_printf(bio_err, "Generating DSA parameters, %d bit long prime\n", numbits);
1.1       jsing     222:                BIO_printf(bio_err, "This could take some time\n");
1.3       doug      223:                if (!DSA_generate_parameters_ex(dsa, numbits, NULL, 0, NULL, NULL, &cb)) {
1.1       jsing     224:                        ERR_print_errors(bio_err);
                    225:                        BIO_printf(bio_err, "Error, DSA key generation failed\n");
                    226:                        goto end;
                    227:                }
1.3       doug      228:        } else if (dsaparam_config.informat == FORMAT_ASN1)
1.1       jsing     229:                dsa = d2i_DSAparams_bio(in, NULL);
1.3       doug      230:        else if (dsaparam_config.informat == FORMAT_PEM)
1.1       jsing     231:                dsa = PEM_read_bio_DSAparams(in, NULL, NULL, NULL);
                    232:        else {
                    233:                BIO_printf(bio_err, "bad input format specified\n");
                    234:                goto end;
                    235:        }
                    236:        if (dsa == NULL) {
                    237:                BIO_printf(bio_err, "unable to load DSA parameters\n");
                    238:                ERR_print_errors(bio_err);
                    239:                goto end;
                    240:        }
1.3       doug      241:        if (dsaparam_config.text) {
1.1       jsing     242:                DSAparams_print(out, dsa);
                    243:        }
1.3       doug      244:        if (dsaparam_config.C) {
1.1       jsing     245:                unsigned char *data;
                    246:                int l, len, bits_p;
                    247:
                    248:                len = BN_num_bytes(dsa->p);
                    249:                bits_p = BN_num_bits(dsa->p);
                    250:                data = malloc(len + 20);
                    251:                if (data == NULL) {
                    252:                        perror("malloc");
                    253:                        goto end;
                    254:                }
                    255:                l = BN_bn2bin(dsa->p, data);
                    256:                printf("static unsigned char dsa%d_p[] = {", bits_p);
                    257:                for (i = 0; i < l; i++) {
                    258:                        if ((i % 12) == 0)
                    259:                                printf("\n\t");
                    260:                        printf("0x%02X, ", data[i]);
                    261:                }
                    262:                printf("\n\t};\n");
                    263:
                    264:                l = BN_bn2bin(dsa->q, data);
                    265:                printf("static unsigned char dsa%d_q[] = {", bits_p);
                    266:                for (i = 0; i < l; i++) {
                    267:                        if ((i % 12) == 0)
                    268:                                printf("\n\t");
                    269:                        printf("0x%02X, ", data[i]);
                    270:                }
                    271:                printf("\n\t};\n");
                    272:
                    273:                l = BN_bn2bin(dsa->g, data);
                    274:                printf("static unsigned char dsa%d_g[] = {", bits_p);
                    275:                for (i = 0; i < l; i++) {
                    276:                        if ((i % 12) == 0)
                    277:                                printf("\n\t");
                    278:                        printf("0x%02X, ", data[i]);
                    279:                }
                    280:                free(data);
                    281:                printf("\n\t};\n\n");
                    282:
                    283:                printf("DSA *get_dsa%d()\n\t{\n", bits_p);
                    284:                printf("\tDSA *dsa;\n\n");
                    285:                printf("\tif ((dsa = DSA_new()) == NULL) return(NULL);\n");
                    286:                printf("\tdsa->p = BN_bin2bn(dsa%d_p, sizeof(dsa%d_p), NULL);\n",
                    287:                    bits_p, bits_p);
                    288:                printf("\tdsa->q = BN_bin2bn(dsa%d_q, sizeof(dsa%d_q), NULL);\n",
                    289:                    bits_p, bits_p);
                    290:                printf("\tdsa->g = BN_bin2bn(dsa%d_g, sizeof(dsa%d_g), NULL);\n",
                    291:                    bits_p, bits_p);
                    292:                printf("\tif ((dsa->p == NULL) || (dsa->q == NULL) || (dsa->g == NULL))\n");
                    293:                printf("\t\t{ DSA_free(dsa); return(NULL); }\n");
                    294:                printf("\treturn(dsa);\n\t}\n");
                    295:        }
1.3       doug      296:        if (!dsaparam_config.noout) {
                    297:                if (dsaparam_config.outformat == FORMAT_ASN1)
1.1       jsing     298:                        i = i2d_DSAparams_bio(out, dsa);
1.3       doug      299:                else if (dsaparam_config.outformat == FORMAT_PEM)
1.1       jsing     300:                        i = PEM_write_bio_DSAparams(out, dsa);
                    301:                else {
                    302:                        BIO_printf(bio_err, "bad output format specified for outfile\n");
                    303:                        goto end;
                    304:                }
                    305:                if (!i) {
                    306:                        BIO_printf(bio_err, "unable to write DSA parameters\n");
                    307:                        ERR_print_errors(bio_err);
                    308:                        goto end;
                    309:                }
                    310:        }
1.3       doug      311:        if (dsaparam_config.genkey) {
1.1       jsing     312:                DSA *dsakey;
                    313:
                    314:                if ((dsakey = DSAparams_dup(dsa)) == NULL)
                    315:                        goto end;
                    316:                if (!DSA_generate_key(dsakey)) {
                    317:                        ERR_print_errors(bio_err);
                    318:                        DSA_free(dsakey);
                    319:                        goto end;
                    320:                }
1.3       doug      321:                if (dsaparam_config.outformat == FORMAT_ASN1)
1.1       jsing     322:                        i = i2d_DSAPrivateKey_bio(out, dsakey);
1.3       doug      323:                else if (dsaparam_config.outformat == FORMAT_PEM)
1.1       jsing     324:                        i = PEM_write_bio_DSAPrivateKey(out, dsakey, NULL, NULL, 0, NULL, NULL);
                    325:                else {
                    326:                        BIO_printf(bio_err, "bad output format specified for outfile\n");
                    327:                        DSA_free(dsakey);
                    328:                        goto end;
                    329:                }
                    330:                DSA_free(dsakey);
                    331:        }
                    332:        ret = 0;
                    333:
                    334: end:
                    335:        BIO_free(in);
                    336:        if (out != NULL)
                    337:                BIO_free_all(out);
                    338:        if (dsa != NULL)
                    339:                DSA_free(dsa);
                    340:
                    341:        return (ret);
                    342: }
                    343:
                    344: static int
                    345: dsa_cb(int p, int n, BN_GENCB * cb)
                    346: {
                    347:        char c = '*';
                    348:
                    349:        if (p == 0)
                    350:                c = '.';
                    351:        if (p == 1)
                    352:                c = '+';
                    353:        if (p == 2)
                    354:                c = '*';
                    355:        if (p == 3)
                    356:                c = '\n';
                    357:        BIO_write(cb->arg, &c, 1);
                    358:        (void) BIO_flush(cb->arg);
                    359: #ifdef GENCB_TEST
                    360:        if (stop_keygen_flag)
                    361:                return 0;
                    362: #endif
                    363:        return 1;
                    364: }