Github CI: Add a job for out-of-source build + install
[openssl.git] / apps / kdf.c
1 /*
2  * Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (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 <string.h>
11
12 #include "apps.h"
13 #include "progs.h"
14 #include <openssl/bio.h>
15 #include <openssl/err.h>
16 #include <openssl/evp.h>
17 #include <openssl/kdf.h>
18 #include <openssl/params.h>
19
20 typedef enum OPTION_choice {
21     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
22     OPT_KDFOPT, OPT_BIN, OPT_KEYLEN, OPT_OUT,
23     OPT_PROV_ENUM
24 } OPTION_CHOICE;
25
26 const OPTIONS kdf_options[] = {
27     {OPT_HELP_STR, 1, '-', "Usage: %s [options] kdf_name\n"},
28
29     OPT_SECTION("General"),
30     {"help", OPT_HELP, '-', "Display this summary"},
31     {"kdfopt", OPT_KDFOPT, 's', "KDF algorithm control parameters in n:v form"},
32     {OPT_MORE_STR, 1, '-', "See 'Supported Controls' in the EVP_KDF_ docs\n"},
33     {"keylen", OPT_KEYLEN, 's', "The size of the output derived key"},
34
35     OPT_SECTION("Output"),
36     {"out", OPT_OUT, '>', "Output to filename rather than stdout"},
37     {"binary", OPT_BIN, '-',
38         "Output in binary format (default is hexadecimal)"},
39
40     OPT_PROV_OPTIONS,
41
42     OPT_PARAMETERS(),
43     {"kdf_name", 0, 0, "Name of the KDF algorithm"},
44     {NULL}
45 };
46
47 int kdf_main(int argc, char **argv)
48 {
49     int ret = 1, out_bin = 0;
50     OPTION_CHOICE o;
51     STACK_OF(OPENSSL_STRING) *opts = NULL;
52     char *prog, *hexout = NULL;
53     const char *outfile = NULL;
54     unsigned char *dkm_bytes = NULL;
55     size_t dkm_len = 0;
56     BIO *out = NULL;
57     EVP_KDF *kdf = NULL;
58     EVP_KDF_CTX *ctx = NULL;
59
60     prog = opt_init(argc, argv, kdf_options);
61     while ((o = opt_next()) != OPT_EOF) {
62         switch (o) {
63         default:
64 opthelp:
65             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
66             goto err;
67         case OPT_HELP:
68             opt_help(kdf_options);
69             ret = 0;
70             goto err;
71         case OPT_BIN:
72             out_bin = 1;
73             break;
74         case OPT_KEYLEN:
75             dkm_len = (size_t)atoi(opt_arg());
76             break;
77         case OPT_OUT:
78             outfile = opt_arg();
79             break;
80         case OPT_KDFOPT:
81             if (opts == NULL)
82                 opts = sk_OPENSSL_STRING_new_null();
83             if (opts == NULL || !sk_OPENSSL_STRING_push(opts, opt_arg()))
84                 goto opthelp;
85             break;
86         case OPT_PROV_CASES:
87             if (!opt_provider(o))
88                 goto err;
89             break;
90         }
91     }
92
93     /* One argument, the KDF name. */
94     argc = opt_num_rest();
95     argv = opt_rest();
96     if (argc != 1)
97         goto opthelp;
98
99     if ((kdf = EVP_KDF_fetch(NULL, argv[0], NULL)) == NULL) {
100         BIO_printf(bio_err, "Invalid KDF name %s\n", argv[0]);
101         goto opthelp;
102     }
103
104     ctx = EVP_KDF_CTX_new(kdf);
105     if (ctx == NULL)
106         goto err;
107
108     if (opts != NULL) {
109         int ok = 1;
110         OSSL_PARAM *params =
111             app_params_new_from_opts(opts, EVP_KDF_settable_ctx_params(kdf));
112
113         if (params == NULL)
114             goto err;
115
116         if (!EVP_KDF_CTX_set_params(ctx, params)) {
117             BIO_printf(bio_err, "KDF parameter error\n");
118             ERR_print_errors(bio_err);
119             ok = 0;
120         }
121         app_params_free(params);
122         if (!ok)
123             goto err;
124     }
125
126     out = bio_open_default(outfile, 'w', out_bin ? FORMAT_BINARY : FORMAT_TEXT);
127     if (out == NULL)
128         goto err;
129
130     if (dkm_len <= 0) {
131         BIO_printf(bio_err, "Invalid derived key length.\n");
132         goto err;
133     }
134     dkm_bytes = app_malloc(dkm_len, "out buffer");
135     if (dkm_bytes == NULL)
136         goto err;
137
138     if (!EVP_KDF_derive(ctx, dkm_bytes, dkm_len)) {
139         BIO_printf(bio_err, "EVP_KDF_derive failed\n");
140         goto err;
141     }
142
143     if (out_bin) {
144         BIO_write(out, dkm_bytes, dkm_len);
145     } else {
146         hexout = OPENSSL_buf2hexstr(dkm_bytes, dkm_len);
147         if (hexout == NULL) {
148             BIO_printf(bio_err, "Memory allocation failure\n");
149             goto err;
150         }
151         BIO_printf(out, "%s\n\n", hexout);
152     }
153
154     ret = 0;
155 err:
156     if (ret != 0)
157         ERR_print_errors(bio_err);
158     OPENSSL_clear_free(dkm_bytes, dkm_len);
159     sk_OPENSSL_STRING_free(opts);
160     EVP_KDF_free(kdf);
161     EVP_KDF_CTX_free(ctx);
162     BIO_free(out);
163     OPENSSL_free(hexout);
164     return ret;
165 }