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