6 errstr - lookup error codes
10 B<openssl errstr error_code>
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
27 27594:error:2006D080:lib(32):func(109):reason(128):bss_file.c:107:
29 can be displayed with:
31 openssl errstr 2006D080
33 to produce the error message:
35 error:2006D080:BIO routines:BIO_new_file:no such file
39 Copyright 2004-2016 The OpenSSL Project Authors. All Rights Reserved.
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>.