1ERRSTR(1) OpenSSL ERRSTR(1)
2
3
4
6 openssl-errstr, errstr - lookup error codes
7
9 openssl errstr error_code
10
12 Sometimes an application will not load error message and only numerical
13 forms will be available. The errstr utility can be used to display the
14 meaning of the hex code. The hex code is the hex digits after the
15 second colon.
16
18 None.
19
21 The error code:
22
23 27594:error:2006D080:lib(32):func(109):reason(128):bss_file.c:107:
24
25 can be displayed with:
26
27 openssl errstr 2006D080
28
29 to produce the error message:
30
31 error:2006D080:BIO routines:BIO_new_file:no such file
32
34 Copyright 2004-2016 The OpenSSL Project Authors. All Rights Reserved.
35
36 Licensed under the OpenSSL license (the "License"). You may not use
37 this file except in compliance with the License. You can obtain a copy
38 in the file LICENSE in the source distribution or at
39 <https://www.openssl.org/source/license.html>.
40
41
42
431.1.1 2018-09-11 ERRSTR(1)