]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/rand.c
Consistent formatting for sizeof(foo)
[thirdparty/openssl.git] / apps / rand.c
CommitLineData
846e33c7
RS
1/*
2 * Copyright 1998-2016 The OpenSSL Project Authors. All Rights Reserved.
a661b653 3 *
846e33c7
RS
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
a661b653 8 */
27b78273
BM
9
10#include "apps.h"
11
12#include <ctype.h>
13#include <stdio.h>
8824ec7c 14#include <string.h>
27b78273
BM
15
16#include <openssl/bio.h>
17#include <openssl/err.h>
18#include <openssl/rand.h>
19
7e1b7485
RS
20typedef enum OPTION_choice {
21 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
3ee1eac2
RS
22 OPT_OUT, OPT_ENGINE, OPT_BASE64, OPT_HEX,
23 OPT_R_ENUM
7e1b7485
RS
24} OPTION_CHOICE;
25
44c83ebd 26const OPTIONS rand_options[] = {
7e1b7485
RS
27 {OPT_HELP_STR, 1, '-', "Usage: %s [flags] num\n"},
28 {OPT_HELP_STR, 1, '-', "Valid options are:\n"},
29 {"help", OPT_HELP, '-', "Display this summary"},
30 {"out", OPT_OUT, '>', "Output file"},
3ee1eac2 31 OPT_R_OPTIONS,
7e1b7485
RS
32 {"base64", OPT_BASE64, '-', "Base64 encode output"},
33 {"hex", OPT_HEX, '-', "Hex encode output"},
0b13e9f0 34#ifndef OPENSSL_NO_ENGINE
7e1b7485 35 {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
0b13e9f0 36#endif
7e1b7485
RS
37 {NULL}
38};
27b78273 39
7e1b7485
RS
40int rand_main(int argc, char **argv)
41{
dd1abd44 42 ENGINE *e = NULL;
7e1b7485 43 BIO *out = NULL;
3ee1eac2 44 char *outfile = NULL, *prog;
7e1b7485 45 OPTION_CHOICE o;
bdd58d98 46 int format = FORMAT_BINARY, i, num = -1, r, ret = 1;
7e1b7485
RS
47
48 prog = opt_init(argc, argv, rand_options);
49 while ((o = opt_next()) != OPT_EOF) {
50 switch (o) {
51 case OPT_EOF:
52 case OPT_ERR:
53 opthelp:
54 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
55 goto end;
56 case OPT_HELP:
57 opt_help(rand_options);
58 ret = 0;
59 goto end;
60 case OPT_OUT:
61 outfile = opt_arg();
62 break;
63 case OPT_ENGINE:
dd1abd44 64 e = setup_engine(opt_arg(), 0);
7e1b7485 65 break;
3ee1eac2
RS
66 case OPT_R_CASES:
67 if (!opt_rand(o))
68 goto end;
7e1b7485
RS
69 break;
70 case OPT_BASE64:
bdd58d98 71 format = FORMAT_BASE64;
7e1b7485
RS
72 break;
73 case OPT_HEX:
bdd58d98 74 format = FORMAT_TEXT;
7e1b7485 75 break;
0f113f3e 76 }
0f113f3e 77 }
7e1b7485
RS
78 argc = opt_num_rest();
79 argv = opt_rest();
c27363f5
RS
80 if (argc == 1) {
81 if (!opt_int(argv[0], &num) || num <= 0)
82 goto end;
83 } else if (argc > 0) {
84 BIO_printf(bio_err, "Extra arguments given.\n");
7e1b7485 85 goto opthelp;
c27363f5 86 }
0f113f3e 87
bdd58d98 88 out = bio_open_default(outfile, 'w', format);
0f113f3e 89 if (out == NULL)
7e1b7485 90 goto end;
0f113f3e 91
bdd58d98 92 if (format == FORMAT_BASE64) {
0f113f3e
MC
93 BIO *b64 = BIO_new(BIO_f_base64());
94 if (b64 == NULL)
7e1b7485 95 goto end;
0f113f3e
MC
96 out = BIO_push(b64, out);
97 }
98
99 while (num > 0) {
100 unsigned char buf[4096];
101 int chunk;
102
103 chunk = num;
104 if (chunk > (int)sizeof(buf))
cbe29648 105 chunk = sizeof(buf);
0f113f3e
MC
106 r = RAND_bytes(buf, chunk);
107 if (r <= 0)
7e1b7485 108 goto end;
0f91e1df
RS
109 if (format != FORMAT_TEXT) {
110 if (BIO_write(out, buf, chunk) != chunk)
111 goto end;
112 } else {
0f113f3e 113 for (i = 0; i < chunk; i++)
0f91e1df
RS
114 if (BIO_printf(out, "%02x", buf[i]) != 2)
115 goto end;
0f113f3e
MC
116 }
117 num -= chunk;
118 }
bdd58d98 119 if (format == FORMAT_TEXT)
0f113f3e 120 BIO_puts(out, "\n");
3ee1eac2 121 if (BIO_flush(out) <= 0)
0f91e1df 122 goto end;
0f113f3e 123
0f113f3e
MC
124 ret = 0;
125
7e1b7485 126 end:
0f91e1df
RS
127 if (ret != 0)
128 ERR_print_errors(bio_err);
dd1abd44 129 release_engine(e);
ca3a82c3 130 BIO_free_all(out);
26a7d938 131 return ret;
0f113f3e 132}