You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

61 lines
1.7 KiB

  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. #include <string>
  15. #include <vector>
  16. #include <openssl/err.h>
  17. #include <openssl/ssl.h>
  18. #if !defined(OPENSSL_WINDOWS)
  19. bool Client(const std::vector<std::string> &args);
  20. bool Server(const std::vector<std::string> &args);
  21. #endif
  22. bool DoPKCS12(const std::vector<std::string> &args);
  23. bool Speed(const std::vector<std::string> &args);
  24. static void usage(const char *name) {
  25. printf("Usage: %s [speed|client|server|pkcs12]\n", name);
  26. }
  27. int main(int argc, char **argv) {
  28. std::string tool;
  29. if (argc >= 2) {
  30. tool = argv[1];
  31. }
  32. SSL_library_init();
  33. std::vector<std::string> args;
  34. for (int i = 2; i < argc; i++) {
  35. args.push_back(argv[i]);
  36. }
  37. if (tool == "speed") {
  38. return !Speed(args);
  39. #if !defined(OPENSSL_WINDOWS)
  40. } else if (tool == "s_client" || tool == "client") {
  41. return !Client(args);
  42. } else if (tool == "s_server" || tool == "server") {
  43. return !Server(args);
  44. #endif
  45. } else if (tool == "pkcs12") {
  46. return !DoPKCS12(args);
  47. } else {
  48. usage(argv[0]);
  49. return 1;
  50. }
  51. }