Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

genrsa.cc 2.2 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* Copyright (c) 2015, 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 <openssl/bio.h>
  15. #include <openssl/bn.h>
  16. #include <openssl/err.h>
  17. #include <openssl/pem.h>
  18. #include <openssl/rsa.h>
  19. #include "internal.h"
  20. static const struct argument kArguments[] = {
  21. {
  22. "-nprimes", kOptionalArgument,
  23. "The number of primes to generate (default: 2)",
  24. },
  25. {
  26. "-bits", kOptionalArgument,
  27. "The number of bits in the modulus (default: 2048)",
  28. },
  29. {
  30. "", kOptionalArgument, "",
  31. },
  32. };
  33. bool GenerateRSAKey(const std::vector<std::string> &args) {
  34. std::map<std::string, std::string> args_map;
  35. if (!ParseKeyValueArguments(&args_map, args, kArguments)) {
  36. PrintUsage(kArguments);
  37. return false;
  38. }
  39. unsigned bits, nprimes = 0;
  40. if (!GetUnsigned(&bits, "-bits", 2048, args_map) ||
  41. !GetUnsigned(&nprimes, "-nprimes", 2, args_map)) {
  42. PrintUsage(kArguments);
  43. return false;
  44. }
  45. bssl::UniquePtr<RSA> rsa(RSA_new());
  46. bssl::UniquePtr<BIGNUM> e(BN_new());
  47. bssl::UniquePtr<BIO> bio(BIO_new_fp(stdout, BIO_NOCLOSE));
  48. if (!BN_set_word(e.get(), RSA_F4) ||
  49. !RSA_generate_multi_prime_key(rsa.get(), bits, nprimes, e.get(), NULL) ||
  50. !PEM_write_bio_RSAPrivateKey(bio.get(), rsa.get(), NULL /* cipher */,
  51. NULL /* key */, 0 /* key len */,
  52. NULL /* password callback */,
  53. NULL /* callback arg */)) {
  54. ERR_print_errors_fp(stderr);
  55. return false;
  56. }
  57. return true;
  58. }