2 * Copyright 2018 The OpenSSL Project Authors. All Rights Reserved.
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
14 #include <openssl/bio.h>
15 #include <openssl/err.h>
16 #include <openssl/evp.h>
17 #include <openssl/params.h>
20 #define BUFSIZE 1024*8
22 typedef enum OPTION_choice {
23 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
24 OPT_MACOPT, OPT_BIN, OPT_IN, OPT_OUT
27 const OPTIONS mac_options[] = {
28 {OPT_HELP_STR, 1, '-', "Usage: %s [options] mac_name\n"},
30 OPT_SECTION("General"),
31 {"help", OPT_HELP, '-', "Display this summary"},
32 {"macopt", OPT_MACOPT, 's', "MAC algorithm parameters in n:v form"},
33 {OPT_MORE_STR, 1, '-', "See 'PARAMETER NAMES' in the EVP_MAC_ docs"},
36 {"in", OPT_IN, '<', "Input file to MAC (default is stdin)"},
38 OPT_SECTION("Output"),
39 {"out", OPT_OUT, '>', "Output to filename rather than stdout"},
40 {"binary", OPT_BIN, '-',
41 "Output in binary format (default is hexadecimal)"},
44 {"mac_name", 0, 0, "MAC algorithm"},
48 int mac_main(int argc, char **argv)
54 EVP_MAC_CTX *ctx = NULL;
55 STACK_OF(OPENSSL_STRING) *opts = NULL;
56 unsigned char *buf = NULL;
59 BIO *in = NULL, *out = NULL;
60 const char *outfile = NULL;
61 const char *infile = NULL;
63 int inform = FORMAT_BINARY;
65 prog = opt_init(argc, argv, mac_options);
66 buf = app_malloc(BUFSIZE, "I/O buffer");
67 while ((o = opt_next()) != OPT_EOF) {
71 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
74 opt_help(mac_options);
88 opts = sk_OPENSSL_STRING_new_null();
89 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 mac = EVP_MAC_fetch(NULL, argv[0], NULL);
104 BIO_printf(bio_err, "Invalid MAC name %s\n", argv[0]);
108 ctx = EVP_MAC_CTX_new(mac);
115 app_params_new_from_opts(opts, EVP_MAC_settable_ctx_params(mac));
120 if (!EVP_MAC_CTX_set_params(ctx, params)) {
121 BIO_printf(bio_err, "MAC parameter error\n");
122 ERR_print_errors(bio_err);
125 app_params_free(params);
130 /* Use text mode for stdin */
131 if (infile == NULL || strcmp(infile, "-") == 0)
132 inform = FORMAT_TEXT;
133 in = bio_open_default(infile, 'r', inform);
137 out = bio_open_default(outfile, 'w', out_bin ? FORMAT_BINARY : FORMAT_TEXT);
141 if (!EVP_MAC_init(ctx)) {
142 BIO_printf(bio_err, "EVP_MAC_Init failed\n");
147 i = BIO_read(in, (char *)buf, BUFSIZE);
149 BIO_printf(bio_err, "Read Error in '%s'\n", infile);
154 if (!EVP_MAC_update(ctx, buf, i)) {
155 BIO_printf(bio_err, "EVP_MAC_update failed\n");
160 if (!EVP_MAC_final(ctx, NULL, &len, 0)) {
161 BIO_printf(bio_err, "EVP_MAC_final failed\n");
165 BIO_printf(bio_err, "output len is too large\n");
169 if (!EVP_MAC_final(ctx, buf, &len, BUFSIZE)) {
170 BIO_printf(bio_err, "EVP_MAC_final failed\n");
175 BIO_write(out, buf, len);
178 BIO_printf(out,"\n");
179 for (i = 0; i < (int)len; ++i)
180 BIO_printf(out, "%02X", buf[i]);
182 BIO_printf(out,"\n");
188 ERR_print_errors(bio_err);
189 OPENSSL_clear_free(buf, BUFSIZE);
190 sk_OPENSSL_STRING_free(opts);
193 EVP_MAC_CTX_free(ctx);