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