1/* Copyright (c) 2014, Google Inc.
2 *
3 * Permission to use, copy, modify, and/or distribute this software for any
4 * purpose with or without fee is hereby granted, provided that the above
5 * copyright notice and this permission notice appear in all copies.
6 *
7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
10 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
13 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
14
15#include <string>
16#include <vector>
17
18#include <openssl/err.h>
19#include <openssl/ssl.h>
20
21
22bool Client(const std::vector<std::string> &args);
23bool DoPKCS12(const std::vector<std::string> &args);
24bool Speed(const std::vector<std::string> &args);
25
26static void usage(const char *name) {
27  printf("Usage: %s [speed|client|pkcs12]\n", name);
28}
29
30int main(int argc, char **argv) {
31  std::string tool;
32  if (argc >= 2) {
33    tool = argv[1];
34  }
35
36  SSL_library_init();
37
38  std::vector<std::string> args;
39  for (int i = 2; i < argc; i++) {
40    args.push_back(argv[i]);
41  }
42
43  if (tool == "speed") {
44    return !Speed(args);
45  } else if (tool == "s_client" || tool == "client") {
46    return !Client(args);
47  } else if (tool == "pkcs12") {
48    return !DoPKCS12(args);
49  } else {
50    usage(argv[0]);
51    return 1;
52  }
53}
54