openssl-errstr.pod.in 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. =pod
  2. {- OpenSSL::safe::output_do_not_edit_headers(); -}
  3. =head1 NAME
  4. openssl-errstr - lookup error codes
  5. =head1 SYNOPSIS
  6. B<openssl errstr>
  7. [B<-help>]
  8. I<error_code...>
  9. =head1 DESCRIPTION
  10. Sometimes an application will not load error message texts and only
  11. numerical forms will be available. This command can be
  12. used to display the meaning of the hex code. The hex code is the hex digits
  13. after the second colon.
  14. =head1 OPTIONS
  15. =over 4
  16. =item B<-help>
  17. Display a usage message.
  18. =back
  19. =head1 EXAMPLES
  20. The error code:
  21. 27594:error:2006D080:lib(32)::reason(128)::107:
  22. can be displayed with:
  23. openssl errstr 2006D080
  24. to produce the error message:
  25. error:2006D080:BIO routines::no such file
  26. =head1 COPYRIGHT
  27. Copyright 2004-2020 The OpenSSL Project Authors. All Rights Reserved.
  28. Licensed under the Apache License 2.0 (the "License"). You may not use
  29. this file except in compliance with the License. You can obtain a copy
  30. in the file LICENSE in the source distribution or at
  31. L<https://www.openssl.org/source/license.html>.
  32. =cut