2 * Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
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
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>
20 DEFINE_STACK_OF_STRING()
22 typedef enum OPTION_choice {
23 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
24 OPT_KDFOPT, OPT_BIN, OPT_KEYLEN, OPT_OUT,
28 const OPTIONS kdf_options[] = {
29 {OPT_HELP_STR, 1, '-', "Usage: %s [options] kdf_name\n"},
31 OPT_SECTION("General"),
32 {"help", OPT_HELP, '-', "Display this summary"},
33 {"kdfopt", OPT_KDFOPT, 's', "KDF algorithm control parameters in n:v form"},
34 {OPT_MORE_STR, 1, '-', "See 'Supported Controls' in the EVP_KDF_ docs\n"},
35 {"keylen", OPT_KEYLEN, 's', "The size of the output derived key"},
37 OPT_SECTION("Output"),
38 {"out", OPT_OUT, '>', "Output to filename rather than stdout"},
39 {"binary", OPT_BIN, '-',
40 "Output in binary format (default is hexadecimal)"},
45 {"kdf_name", 0, 0, "Name of the KDF algorithm"},
49 int kdf_main(int argc, char **argv)
51 int ret = 1, out_bin = 0;
53 STACK_OF(OPENSSL_STRING) *opts = NULL;
54 char *prog, *hexout = NULL;
55 const char *outfile = NULL;
56 unsigned char *dkm_bytes = NULL;
60 EVP_KDF_CTX *ctx = NULL;
62 prog = opt_init(argc, argv, kdf_options);
63 while ((o = opt_next()) != OPT_EOF) {
67 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
70 opt_help(kdf_options);
77 dkm_len = (size_t)atoi(opt_arg());
84 opts = sk_OPENSSL_STRING_new_null();
85 if (opts == NULL || !sk_OPENSSL_STRING_push(opts, opt_arg()))
94 argc = opt_num_rest();
98 BIO_printf(bio_err, "Invalid number of extra arguments\n");
102 if ((kdf = EVP_KDF_fetch(NULL, argv[0], NULL)) == NULL) {
103 BIO_printf(bio_err, "Invalid KDF name %s\n", argv[0]);
107 ctx = EVP_KDF_CTX_new(kdf);
114 app_params_new_from_opts(opts, EVP_KDF_settable_ctx_params(kdf));
119 if (!EVP_KDF_CTX_set_params(ctx, params)) {
120 BIO_printf(bio_err, "KDF parameter error\n");
121 ERR_print_errors(bio_err);
124 app_params_free(params);
129 out = bio_open_default(outfile, 'w', out_bin ? FORMAT_BINARY : FORMAT_TEXT);
134 BIO_printf(bio_err, "Invalid derived key length.\n");
137 dkm_bytes = app_malloc(dkm_len, "out buffer");
138 if (dkm_bytes == NULL)
141 if (!EVP_KDF_derive(ctx, dkm_bytes, dkm_len)) {
142 BIO_printf(bio_err, "EVP_KDF_derive failed\n");
147 BIO_write(out, dkm_bytes, dkm_len);
149 hexout = OPENSSL_buf2hexstr(dkm_bytes, dkm_len);
150 if (hexout == NULL) {
151 BIO_printf(bio_err, "Memory allocation failure\n");
154 BIO_printf(out, "%s\n\n", hexout);
160 ERR_print_errors(bio_err);
161 OPENSSL_clear_free(dkm_bytes, dkm_len);
162 sk_OPENSSL_STRING_free(opts);
164 EVP_KDF_CTX_free(ctx);
166 OPENSSL_free(hexout);