Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

54 linhas
1.5 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. bool Client(const std::vector<std::string> &args);
  19. bool DoPKCS12(const std::vector<std::string> &args);
  20. bool Speed(const std::vector<std::string> &args);
  21. static void usage(const char *name) {
  22. printf("Usage: %s [speed|client|pkcs12]\n", name);
  23. }
  24. int main(int argc, char **argv) {
  25. std::string tool;
  26. if (argc >= 2) {
  27. tool = argv[1];
  28. }
  29. SSL_library_init();
  30. std::vector<std::string> args;
  31. for (int i = 2; i < argc; i++) {
  32. args.push_back(argv[i]);
  33. }
  34. if (tool == "speed") {
  35. return !Speed(args);
  36. } else if (tool == "s_client" || tool == "client") {
  37. return !Client(args);
  38. } else if (tool == "pkcs12") {
  39. return !DoPKCS12(args);
  40. } else {
  41. usage(argv[0]);
  42. return 1;
  43. }
  44. }