f6bcb8f84efe4018a2e935e7c0db25a9e50ee021
[openssl.git] / apps / pkeyparam.c
1 /*
2  * Copyright 2006-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include <stdio.h>
11 #include <string.h>
12 #include "apps.h"
13 #include <openssl/pem.h>
14 #include <openssl/err.h>
15 #include <openssl/evp.h>
16
17 typedef enum OPTION_choice {
18     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
19     OPT_IN, OPT_OUT, OPT_TEXT, OPT_NOOUT, OPT_ENGINE
20 } OPTION_CHOICE;
21
22 OPTIONS pkeyparam_options[] = {
23     {"help", OPT_HELP, '-', "Display this summary"},
24     {"in", OPT_IN, '<', "Input file"},
25     {"out", OPT_OUT, '>', "Output file"},
26     {"text", OPT_TEXT, '-', "Print parameters as text"},
27     {"noout", OPT_NOOUT, '-', "Don't output encoded parameters"},
28 #ifndef OPENSSL_NO_ENGINE
29     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
30 #endif
31     {NULL}
32 };
33
34 int pkeyparam_main(int argc, char **argv)
35 {
36     BIO *in = NULL, *out = NULL;
37     EVP_PKEY *pkey = NULL;
38     int text = 0, noout = 0, ret = 1;
39     OPTION_CHOICE o;
40     char *infile = NULL, *outfile = NULL, *prog;
41
42     prog = opt_init(argc, argv, pkeyparam_options);
43     while ((o = opt_next()) != OPT_EOF) {
44         switch (o) {
45         case OPT_EOF:
46         case OPT_ERR:
47  opthelp:
48             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
49             goto end;
50         case OPT_HELP:
51             opt_help(pkeyparam_options);
52             ret = 0;
53             goto end;
54         case OPT_IN:
55             infile = opt_arg();
56             break;
57         case OPT_OUT:
58             outfile = opt_arg();
59             break;
60         case OPT_ENGINE:
61             (void)setup_engine(opt_arg(), 0);
62             break;
63         case OPT_TEXT:
64             text = 1;
65             break;
66         case OPT_NOOUT:
67             noout = 1;
68             break;
69         }
70     }
71     argc = opt_num_rest();
72     if (argc != 0)
73         goto opthelp;
74
75     in = bio_open_default(infile, 'r', FORMAT_PEM);
76     if (in == NULL)
77         goto end;
78     out = bio_open_default(outfile, 'w', FORMAT_PEM);
79     if (out == NULL)
80         goto end;
81     pkey = PEM_read_bio_Parameters(in, NULL);
82     if (!pkey) {
83         BIO_printf(bio_err, "Error reading parameters\n");
84         ERR_print_errors(bio_err);
85         goto end;
86     }
87
88     if (!noout)
89         PEM_write_bio_Parameters(out, pkey);
90
91     if (text)
92         EVP_PKEY_print_params(out, pkey, 0, NULL);
93
94     ret = 0;
95
96  end:
97     EVP_PKEY_free(pkey);
98     BIO_free_all(out);
99     BIO_free(in);
100
101     return ret;
102 }