2
0

genrsa.pod 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. =pod
  2. =head1 NAME
  3. genrsa - generate an RSA private key
  4. =head1 SYNOPSIS
  5. B<openssl> B<genrsa>
  6. [B<-out filename>]
  7. [B<-passout arg>]
  8. [B<-des>]
  9. [B<-des3>]
  10. [B<-idea>]
  11. [B<-f4>]
  12. [B<-3>]
  13. [B<-rand file(s)>]
  14. [B<-engine id>]
  15. [B<numbits>]
  16. =head1 DESCRIPTION
  17. The B<genrsa> command generates an RSA private key.
  18. =head1 OPTIONS
  19. =over 4
  20. =item B<-out filename>
  21. the output filename. If this argument is not specified then standard output is
  22. used.
  23. =item B<-passout arg>
  24. the output file password source. For more information about the format of B<arg>
  25. see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)|openssl(1)>.
  26. =item B<-des|-des3|-idea>
  27. These options encrypt the private key with the DES, triple DES, or the
  28. IDEA ciphers respectively before outputting it. If none of these options is
  29. specified no encryption is used. If encryption is used a pass phrase is prompted
  30. for if it is not supplied via the B<-passout> argument.
  31. =item B<-F4|-3>
  32. the public exponent to use, either 65537 or 3. The default is 65537.
  33. =item B<-rand file(s)>
  34. a file or files containing random data used to seed the random number
  35. generator, or an EGD socket (see L<RAND_egd(3)|RAND_egd(3)>).
  36. Multiple files can be specified separated by a OS-dependent character.
  37. The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
  38. all others.
  39. =item B<-engine id>
  40. specifying an engine (by its unique B<id> string) will cause B<genrsa>
  41. to attempt to obtain a functional reference to the specified engine,
  42. thus initialising it if needed. The engine will then be set as the default
  43. for all available algorithms.
  44. =item B<numbits>
  45. the size of the private key to generate in bits. This must be the last option
  46. specified. The default is 512.
  47. =back
  48. =head1 NOTES
  49. RSA private key generation essentially involves the generation of two prime
  50. numbers. When generating a private key various symbols will be output to
  51. indicate the progress of the generation. A B<.> represents each number which
  52. has passed an initial sieve test, B<+> means a number has passed a single
  53. round of the Miller-Rabin primality test. A newline means that the number has
  54. passed all the prime tests (the actual number depends on the key size).
  55. Because key generation is a random process the time taken to generate a key
  56. may vary somewhat.
  57. =head1 BUGS
  58. A quirk of the prime generation algorithm is that it cannot generate small
  59. primes. Therefore the number of bits should not be less that 64. For typical
  60. private keys this will not matter because for security reasons they will
  61. be much larger (typically 1024 bits).
  62. =head1 SEE ALSO
  63. L<gendsa(1)|gendsa(1)>
  64. =cut