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