openssl-cmds.pod 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. =pod
  2. =head1 NAME
  3. asn1parse,
  4. ca,
  5. ciphers,
  6. cms,
  7. crl,
  8. crl2pkcs7,
  9. dgst,
  10. dhparam,
  11. dsa,
  12. dsaparam,
  13. ec,
  14. ecparam,
  15. enc,
  16. engine,
  17. errstr,
  18. gendsa,
  19. genpkey,
  20. genrsa,
  21. info,
  22. kdf,
  23. mac,
  24. nseq,
  25. ocsp,
  26. passwd,
  27. pkcs12,
  28. pkcs7,
  29. pkcs8,
  30. pkey,
  31. pkeyparam,
  32. pkeyutl,
  33. prime,
  34. rand,
  35. rehash,
  36. req,
  37. rsa,
  38. rsautl,
  39. s_client,
  40. s_server,
  41. s_time,
  42. sess_id,
  43. smime,
  44. speed,
  45. spkac,
  46. srp,
  47. storeutl,
  48. ts,
  49. verify,
  50. version,
  51. x509
  52. - OpenSSL application commands
  53. =head1 SYNOPSIS
  54. =for openssl generic
  55. B<openssl> I<cmd> B<-help> | [I<-option> | I<-option> I<arg>] ... [I<arg>] ...
  56. =head1 DESCRIPTION
  57. Every I<cmd> listed above is a (sub-)command of the L<openssl(1)> application.
  58. It has its own detailed manual page at B<openssl-I<cmd>>(1). For example, to
  59. view the manual page for the B<openssl dgst> command, type C<man openssl-dgst>.
  60. =head1 OPTIONS
  61. Among others, every subcommand has a help option.
  62. =over 4
  63. =item B<-help>
  64. Print out a usage message for the subcommand.
  65. =back
  66. =head1 SEE ALSO
  67. L<openssl(1)>,
  68. L<openssl-asn1parse(1)>,
  69. L<openssl-ca(1)>,
  70. L<openssl-ciphers(1)>,
  71. L<openssl-cms(1)>,
  72. L<openssl-crl(1)>,
  73. L<openssl-crl2pkcs7(1)>,
  74. L<openssl-dgst(1)>,
  75. L<openssl-dhparam(1)>,
  76. L<openssl-dsa(1)>,
  77. L<openssl-dsaparam(1)>,
  78. L<openssl-ec(1)>,
  79. L<openssl-ecparam(1)>,
  80. L<openssl-enc(1)>,
  81. L<openssl-engine(1)>,
  82. L<openssl-errstr(1)>,
  83. L<openssl-gendsa(1)>,
  84. L<openssl-genpkey(1)>,
  85. L<openssl-genrsa(1)>,
  86. L<openssl-info(1)>,
  87. L<openssl-kdf(1)>,
  88. L<openssl-mac(1)>,
  89. L<openssl-nseq(1)>,
  90. L<openssl-ocsp(1)>,
  91. L<openssl-passwd(1)>,
  92. L<openssl-pkcs12(1)>,
  93. L<openssl-pkcs7(1)>,
  94. L<openssl-pkcs8(1)>,
  95. L<openssl-pkey(1)>,
  96. L<openssl-pkeyparam(1)>,
  97. L<openssl-pkeyutl(1)>,
  98. L<openssl-prime(1)>,
  99. L<openssl-rand(1)>,
  100. L<openssl-rehash(1)>,
  101. L<openssl-req(1)>,
  102. L<openssl-rsa(1)>,
  103. L<openssl-rsautl(1)>,
  104. L<openssl-s_client(1)>,
  105. L<openssl-s_server(1)>,
  106. L<openssl-s_time(1)>,
  107. L<openssl-sess_id(1)>,
  108. L<openssl-smime(1)>,
  109. L<openssl-speed(1)>,
  110. L<openssl-spkac(1)>,
  111. L<openssl-srp(1)>,
  112. L<openssl-storeutl(1)>,
  113. L<openssl-ts(1)>,
  114. L<openssl-verify(1)>,
  115. L<openssl-version(1)>,
  116. L<openssl-x509(1)>,
  117. =head1 HISTORY
  118. Initially, the manual page entry for the C<openssl I<cmd>> command used
  119. to be available at I<cmd>(1). Later, the alias B<openssl-I<cmd>>(1) was
  120. introduced, which made it easier to group the openssl commands using
  121. the L<apropos(1)> command or the shell's tab completion.
  122. In order to reduce cluttering of the global manual page namespace,
  123. the manual page entries without the 'openssl-' prefix have been
  124. deprecated in OpenSSL 3.0 and will be removed in OpenSSL 4.0.
  125. =head1 COPYRIGHT
  126. Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
  127. Licensed under the Apache License 2.0 (the "License"). You may not use
  128. this file except in compliance with the License. You can obtain a copy
  129. in the file LICENSE in the source distribution or at
  130. L<https://www.openssl.org/source/license.html>.
  131. =cut