errstr.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" ?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <title>errstr</title>
  6. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  7. <link rev="made" href="mailto:root@localhost" />
  8. </head>
  9. <body>
  10. <ul id="index">
  11. <li><a href="#NAME">NAME</a></li>
  12. <li><a href="#SYNOPSIS">SYNOPSIS</a></li>
  13. <li><a href="#DESCRIPTION">DESCRIPTION</a></li>
  14. <li><a href="#OPTIONS">OPTIONS</a></li>
  15. <li><a href="#EXAMPLES">EXAMPLES</a></li>
  16. <li><a href="#COPYRIGHT">COPYRIGHT</a></li>
  17. </ul>
  18. <h1 id="NAME">NAME</h1>
  19. <p>openssl-errstr, errstr - lookup error codes</p>
  20. <h1 id="SYNOPSIS">SYNOPSIS</h1>
  21. <p><b>openssl errstr error_code</b></p>
  22. <h1 id="DESCRIPTION">DESCRIPTION</h1>
  23. <p>Sometimes an application will not load error message and only numerical forms will be available. The <b>errstr</b> utility can be used to display the meaning of the hex code. The hex code is the hex digits after the second colon.</p>
  24. <h1 id="OPTIONS">OPTIONS</h1>
  25. <p>None.</p>
  26. <h1 id="EXAMPLES">EXAMPLES</h1>
  27. <p>The error code:</p>
  28. <pre><code> 27594:error:2006D080:lib(32):func(109):reason(128):bss_file.c:107:</code></pre>
  29. <p>can be displayed with:</p>
  30. <pre><code> openssl errstr 2006D080</code></pre>
  31. <p>to produce the error message:</p>
  32. <pre><code> error:2006D080:BIO routines:BIO_new_file:no such file</code></pre>
  33. <h1 id="COPYRIGHT">COPYRIGHT</h1>
  34. <p>Copyright 2004-2019 The OpenSSL Project Authors. All Rights Reserved.</p>
  35. <p>Licensed under the OpenSSL license (the &quot;License&quot;). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at <a href="https://www.openssl.org/source/license.html">https://www.openssl.org/source/license.html</a>.</p>
  36. </body>
  37. </html>