openssl-pkeyparam.pod 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. =pod
  2. =head1 NAME
  3. openssl-pkeyparam - public key algorithm parameter processing tool
  4. =head1 SYNOPSIS
  5. B<openssl> B<pkeyparam>
  6. [B<-help>]
  7. [B<-in> I<filename>]
  8. [B<-out> I<filename>]
  9. [B<-text>]
  10. [B<-noout>]
  11. [B<-engine> I<id>]
  12. [B<-check>]
  13. =for openssl ifdef engine
  14. =head1 DESCRIPTION
  15. This command processes public key algorithm parameters.
  16. They can be checked for correctness and their components printed out.
  17. =head1 OPTIONS
  18. =over 4
  19. =item B<-help>
  20. Print out a usage message.
  21. =item B<-in> I<filename>
  22. This specifies the input filename to read parameters from or standard input if
  23. this option is not specified.
  24. =item B<-out> I<filename>
  25. This specifies the output filename to write parameters to or standard output if
  26. this option is not specified.
  27. =item B<-text>
  28. Prints out the parameters in plain text in addition to the encoded version.
  29. =item B<-noout>
  30. Do not output the encoded version of the parameters.
  31. =item B<-engine> I<id>
  32. Specifying an engine (by its unique I<id> string) will cause this command
  33. to attempt to obtain a functional reference to the specified engine,
  34. thus initialising it if needed. The engine will then be set as the default
  35. for all available algorithms.
  36. =item B<-check>
  37. This option checks the correctness of parameters.
  38. =back
  39. =head1 EXAMPLES
  40. Print out text version of parameters:
  41. openssl pkeyparam -in param.pem -text
  42. =head1 NOTES
  43. There are no B<-inform> or B<-outform> options for this command because only
  44. PEM format is supported because the key type is determined by the PEM headers.
  45. =head1 SEE ALSO
  46. L<openssl(1)>,
  47. L<openssl-genpkey(1)>,
  48. L<openssl-rsa(1)>,
  49. L<openssl-pkcs8(1)>,
  50. L<openssl-dsa(1)>,
  51. L<openssl-genrsa(1)>,
  52. L<openssl-gendsa(1)>
  53. =head1 COPYRIGHT
  54. Copyright 2006-2019 The OpenSSL Project Authors. All Rights Reserved.
  55. Licensed under the Apache License 2.0 (the "License"). You may not use
  56. this file except in compliance with the License. You can obtain a copy
  57. in the file LICENSE in the source distribution or at
  58. L<https://www.openssl.org/source/license.html>.
  59. =cut