1=pod
2
3=head1 NAME
4
5errstr - lookup error codes
6
7=head1 SYNOPSIS
8
9B<openssl errstr error_code>
10
11=head1 DESCRIPTION
12
13Sometimes an application will not load error message and only
14numerical forms will be available. The B<errstr> utility can be used to
15display the meaning of the hex code. The hex code is the hex digits after the
16second colon.
17
18=head1 EXAMPLE
19
20The error code:
21
22 27594:error:2006D080:lib(32):func(109):reason(128):bss_file.c:107:
23
24can be displayed with:
25
26 openssl errstr 2006D080
27
28to produce the error message:
29
30 error:2006D080:BIO routines:BIO_new_file:no such file
31
32=head1 SEE ALSO
33
34L<err(3)|err(3)>,
35L<ERR_load_crypto_strings(3)|ERR_load_crypto_strings(3)>,
36L<SSL_load_error_strings(3)|SSL_load_error_strings(3)>
37
38
39=cut
40