Add EVP_PKEY_METHOD redirection test
[openssl.git] / apps / rand.c
1 /*
2  * Copyright 1998-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 "apps.h"
11
12 #include <ctype.h>
13 #include <stdio.h>
14 #include <string.h>
15
16 #include <openssl/bio.h>
17 #include <openssl/err.h>
18 #include <openssl/rand.h>
19
20 typedef enum OPTION_choice {
21     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
22     OPT_OUT, OPT_ENGINE, OPT_BASE64, OPT_HEX,
23     OPT_R_ENUM
24 } OPTION_CHOICE;
25
26 const OPTIONS rand_options[] = {
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"},
31     OPT_R_OPTIONS,
32     {"base64", OPT_BASE64, '-', "Base64 encode output"},
33     {"hex", OPT_HEX, '-', "Hex encode output"},
34 #ifndef OPENSSL_NO_ENGINE
35     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
36 #endif
37     {NULL}
38 };
39
40 int rand_main(int argc, char **argv)
41 {
42     ENGINE *e = NULL;
43     BIO *out = NULL;
44     char *outfile = NULL, *prog;
45     OPTION_CHOICE o;
46     int format = FORMAT_BINARY, i, num = -1, r, ret = 1;
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:
64             e = setup_engine(opt_arg(), 0);
65             break;
66         case OPT_R_CASES:
67             if (!opt_rand(o))
68                 goto end;
69             break;
70         case OPT_BASE64:
71             format = FORMAT_BASE64;
72             break;
73         case OPT_HEX:
74             format = FORMAT_TEXT;
75             break;
76         }
77     }
78     argc = opt_num_rest();
79     argv = opt_rest();
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");
85         goto opthelp;
86     }
87
88     out = bio_open_default(outfile, 'w', format);
89     if (out == NULL)
90         goto end;
91
92     if (format == FORMAT_BASE64) {
93         BIO *b64 = BIO_new(BIO_f_base64());
94         if (b64 == NULL)
95             goto end;
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))
105             chunk = sizeof buf;
106         r = RAND_bytes(buf, chunk);
107         if (r <= 0)
108             goto end;
109         if (format != FORMAT_TEXT) {
110             if (BIO_write(out, buf, chunk) != chunk)
111                 goto end;
112         } else {
113             for (i = 0; i < chunk; i++)
114                 if (BIO_printf(out, "%02x", buf[i]) != 2)
115                     goto end;
116         }
117         num -= chunk;
118     }
119     if (format == FORMAT_TEXT)
120         BIO_puts(out, "\n");
121     if (BIO_flush(out) <= 0)
122         goto end;
123
124     ret = 0;
125
126  end:
127     if (ret != 0)
128         ERR_print_errors(bio_err);
129     release_engine(e);
130     BIO_free_all(out);
131     return (ret);
132 }