lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame^] | 1 | =pod |
| 2 | |
| 3 | =head1 NAME |
| 4 | |
| 5 | openssl-errstr, |
| 6 | errstr - lookup error codes |
| 7 | |
| 8 | =head1 SYNOPSIS |
| 9 | |
| 10 | B<openssl errstr error_code> |
| 11 | |
| 12 | =head1 DESCRIPTION |
| 13 | |
| 14 | Sometimes an application will not load error message and only |
| 15 | numerical forms will be available. The B<errstr> utility can be used to |
| 16 | display the meaning of the hex code. The hex code is the hex digits after the |
| 17 | second colon. |
| 18 | |
| 19 | =head1 OPTIONS |
| 20 | |
| 21 | None. |
| 22 | |
| 23 | =head1 EXAMPLES |
| 24 | |
| 25 | The error code: |
| 26 | |
| 27 | 27594:error:2006D080:lib(32):func(109):reason(128):bss_file.c:107: |
| 28 | |
| 29 | can be displayed with: |
| 30 | |
| 31 | openssl errstr 2006D080 |
| 32 | |
| 33 | to produce the error message: |
| 34 | |
| 35 | error:2006D080:BIO routines:BIO_new_file:no such file |
| 36 | |
| 37 | =head1 COPYRIGHT |
| 38 | |
| 39 | Copyright 2004-2019 The OpenSSL Project Authors. All Rights Reserved. |
| 40 | |
| 41 | Licensed under the OpenSSL license (the "License"). You may not use |
| 42 | this file except in compliance with the License. You can obtain a copy |
| 43 | in the file LICENSE in the source distribution or at |
| 44 | L<https://www.openssl.org/source/license.html>. |
| 45 | |
| 46 | =cut |