openssl-genrsa.pod.in 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. =pod
  2. =begin comment
  3. {- join("\n", @autowarntext) -}
  4. =end comment
  5. =head1 NAME
  6. openssl-genrsa - generate an RSA private key
  7. =head1 SYNOPSIS
  8. B<openssl> B<genrsa>
  9. [B<-help>]
  10. [B<-out> I<filename>]
  11. [B<-passout> I<arg>]
  12. [B<-aes128>]
  13. [B<-aes192>]
  14. [B<-aes256>]
  15. [B<-aria128>]
  16. [B<-aria192>]
  17. [B<-aria256>]
  18. [B<-camellia128>]
  19. [B<-camellia192>]
  20. [B<-camellia256>]
  21. [B<-des>]
  22. [B<-des3>]
  23. [B<-idea>]
  24. [B<-f4>|B<-3>]
  25. [B<-engine> I<id>]
  26. [B<-primes> I<num>]
  27. [B<-verbose>]
  28. {- $OpenSSL::safe::opt_r_synopsis -}
  29. [B<numbits>]
  30. =for openssl ifdef engine
  31. =head1 DESCRIPTION
  32. This command generates an RSA private key.
  33. =head1 OPTIONS
  34. =over 4
  35. =item B<-help>
  36. Print out a usage message.
  37. =item B<-out> I<filename>
  38. Output the key to the specified file. If this argument is not specified then
  39. standard output is used.
  40. =item B<-passout> I<arg>
  41. The output file password source. For more information about the format
  42. see L<openssl(1)/Pass Phrase Options>.
  43. =item B<-aes128>, B<-aes192>, B<-aes256>, B<-aria128>, B<-aria192>, B<-aria256>, B<-camellia128>, B<-camellia192>, B<-camellia256>, B<-des>, B<-des3>, B<-idea>
  44. These options encrypt the private key with specified
  45. cipher before outputting it. If none of these options is
  46. specified no encryption is used. If encryption is used a pass phrase is prompted
  47. for if it is not supplied via the B<-passout> argument.
  48. =item B<-F4>|B<-3>
  49. The public exponent to use, either 65537 or 3. The default is 65537.
  50. =item B<-engine> I<id>
  51. Specifying an engine (by its unique I<id> string) will cause this command
  52. to attempt to obtain a functional reference to the specified engine,
  53. thus initialising it if needed. The engine will then be set as the default
  54. for all available algorithms.
  55. =item B<-primes> I<num>
  56. Specify the number of primes to use while generating the RSA key. The I<num>
  57. parameter must be a positive integer that is greater than 1 and less than 16.
  58. If I<num> is greater than 2, then the generated key is called a 'multi-prime'
  59. RSA key, which is defined in RFC 8017.
  60. =item B<-verbose>
  61. Print extra details about the operations being performed.
  62. {- $OpenSSL::safe::opt_r_item -}
  63. =item B<numbits>
  64. The size of the private key to generate in bits. This must be the last option
  65. specified. The default is 2048 and values less than 512 are not allowed.
  66. =back
  67. =head1 NOTES
  68. RSA private key generation essentially involves the generation of two or more
  69. prime numbers. When generating a private key various symbols will be output to
  70. indicate the progress of the generation. A B<.> represents each number which
  71. has passed an initial sieve test, B<+> means a number has passed a single
  72. round of the Miller-Rabin primality test, B<*> means the current prime starts
  73. a regenerating progress due to some failed tests. A newline means that the number
  74. has passed all the prime tests (the actual number depends on the key size).
  75. Because key generation is a random process the time taken to generate a key
  76. may vary somewhat. But in general, more primes lead to less generation time
  77. of a key.
  78. =head1 SEE ALSO
  79. L<openssl(1)>,
  80. L<openssl-gendsa(1)>
  81. =head1 COPYRIGHT
  82. Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.
  83. Licensed under the Apache License 2.0 (the "License"). You may not use
  84. this file except in compliance with the License. You can obtain a copy
  85. in the file LICENSE in the source distribution or at
  86. L<https://www.openssl.org/source/license.html>.
  87. =cut