]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/OpenSSL_version.pod
Add CPU info to the speed command summary
[thirdparty/openssl.git] / doc / man3 / OpenSSL_version.pod
CommitLineData
3a63dbef
RL
1=pod
2
3=head1 NAME
4
5OPENSSL_VERSION_MAJOR, OPENSSL_VERSION_MINOR, OPENSSL_VERSION_PATCH,
6OPENSSL_VERSION_PRE_RELEASE, OPENSSL_VERSION_BUILD_METADATA,
7OPENSSL_VERSION_PRE_RELEASE_STR, OPENSSL_VERSION_BUILD_METADATA_STR,
8OPENSSL_VERSION_TEXT,
9OPENSSL_version_major, OPENSSL_version_minor, OPENSSL_version_patch,
10OPENSSL_version_pre_release, OPENSSL_version_build_metadata, OpenSSL_version,
0109e030
RL
11OPENSSL_VERSION_NUMBER, OpenSSL_version_num, OPENSSL_info
12- get OpenSSL version number and other information
3a63dbef
RL
13
14=head1 SYNOPSIS
15
16 #include <openssl/opensslv.h>
17
18 #define OPENSSL_VERSION_MAJOR x
19 #define OPENSSL_VERSION_MINOR y
20 #define OPENSSL_VERSION_PATCH z
21
22 /* The definitions here are typical release values */
23 #undef OPENSSL_VERSION_PRE_RELEASE
24 #undef OPENSSL_VERSION_BUILD_METADATA
25 #define OPENSSL_VERSION_PRE_RELEASE_STR ""
26 #define OPENSSL_VERSION_BUILD_METADATA_STR ""
27
28 #define OPENSSL_VERSION_TEXT "OpenSSL x.y.z xx XXX xxxx"
29
30 unsigned int OPENSSL_version_major(void);
31 unsigned int OPENSSL_version_minor(void);
32 unsigned int OPENSSL_version_patch(void);
33 const char *OPENSSL_version_pre_release(void);
34 const char *OPENSSL_version_build_metadata(void);
35
36 #include <openssl/crypto.h>
37
38 const char *OpenSSL_version(int t);
39
0109e030
RL
40 const char *OPENSSL_info(int t);
41
3a63dbef
RL
42Deprecated:
43
44 /* from openssl/opensslv.h */
45 #define OPENSSL_VERSION_NUMBER 0xnnnnnnnnnL
46
47 /* from openssl/crypto.h */
48 unsigned long OpenSSL_version_num();
49
50=head1 DESCRIPTION
51
52=head2 Macros
53
54The three macros B<OPENSSL_VERSION_MAJOR>, B<OPENSSL_VERSION_MINOR> and
55B<OPENSSL_VERSION_PATCH> represent the three parts of a 3 numbered version
56number, MAJOR.MINOR.PATCH.
57
58The macro B<OPENSSL_VERSION_PRE_RELEASE> is an added bit of text that,
59when defined, indicates that this is a pre-release version, such as
60C<"-dev"> for an ongoing development snapshot, C<"-alpha3"> for an
61alpha release, etc...
62The value must be a string.
63
64The macro B<OPENSSL_VERSION_BUILD_METADATA> is extra metadata, reserved
65for other parties (examples: C<"+fips">, C<"+vendor.1">).
66The OpenSSL project will not touch this macro.
67The value must be a string.
68
69B<OPENSSL_VERSION_STR> is a convenience macro to get the short version
70number string, "MAJOR.MINOR.PATCH".
71
72B<OPENSSL_FULL_VERSION_STR> is a convenience macro to get the longer
73version number string, which combines B<OPENSSL_VERSION_STR>,
74B<OPENSSL_VERSION_PRE_RELEASE> and B<OPENSSL_VERSION_BUILD_METADATA>.
75
76B<OPENSSL_VERSION_TEXT> is a convenience macro to get a full descriptive
77version text, which includes B<OPENSSL_FULL_VERSION_STR> and the release
78date.
79
80=head2 Functions
81
82OPENSSL_version_major(), OPENSSL_version_minor(), OPENSSL_version_patch(),
83OPENSSL_version_pre_release(), and OPENSSL_version_build_metadata() return
84the values of the macros above for the build of the library, respectively.
85
86OpenSSL_version() returns different strings depending on B<t>:
87
88=over 4
89
90=item OPENSSL_VERSION
91
92The value of B<OPENSSL_VERSION_TEXT>
93
94=item OPENSSL_VERSION_STRING
95
96The value of B<OPENSSL_VERSION_STR>
97
98=item OPENSSL_FULL_VERSION_STRING
99
100The value of B<OPENSSL_FULL_VERSION_STR>
101
102=item OPENSSL_CFLAGS
103
104The compiler flags set for the compilation process in the form
105"compiler: ..." if available or "compiler: information not available"
106otherwise.
107
108=item OPENSSL_BUILT_ON
109
110The date of the build process in the form "built on: ..." if available
111or "built on: date not available" otherwise.
112
113=item OPENSSL_PLATFORM
114
115The "Configure" target of the library build in the form "platform: ..."
116if available or "platform: information not available" otherwise.
117
118=item OPENSSL_DIR
119
120The "OPENSSLDIR" setting of the library build in the form "OPENSSLDIR: "...""
121if available or "OPENSSLDIR: N/A" otherwise.
122
123=item OPENSSL_ENGINES_DIR
124
125The "ENGINESDIR" setting of the library build in the form "ENGINESDIR: "...""
126if available or "ENGINESDIR: N/A" otherwise.
127
363e941e
BE
128=item OPENSSL_MODULES_DIR
129
130The "MODULESDIR" setting of the library build in the form "MODULESDIR: "...""
131if available or "MODULESDIR: N/A" otherwise.
132
133=item OPENSSL_CPU_INFO
134
135The current OpenSSL cpu settings.
136This is the current setting of the cpu capability flags. It is usually
137automatically configured but may be set via an environment variable.
138The value has the same syntax as the environment variable.
139For x86 the string looks like "CPUINFO: OPENSSL_ia32cap=0x123:0x456".
140Or "CPUINFO: N/A" if not available, e.g. no-asm build.
141
3a63dbef
RL
142=back
143
144For an unknown B<t>, the text "not available" is returned.
145
0109e030
RL
146OPENSSL_info() also returns different strings depending on B<t>:
147
148=over 4
149
150=item OPENSSL_INFO_CONFIG_DIR
151
152The configured C<OPENSSLDIR>, which is the default location for
153OpenSSL configuration files.
154
155=item OPENSSL_INFO_ENGINES_DIR
156
157The configured C<ENGINESDIR>, which is the default location for
158OpenSSL engines.
159
160=item OPENSSL_INFO_MODULES_DIR
161
162The configured C<MODULESDIR>, which is the default location for
163dynamically loadable OpenSSL modules other than engines.
164
165=item OPENSSL_INFO_DSO_EXTENSION
166
167The configured dynamically loadable module extension.
168
169=item OPENSSL_INFO_DIR_FILENAME_SEPARATOR
170
171The separator between a directory specification and a file name.
172Note that on some operating systems, this is not the same as the
173separator between directory elements.
174
175=item OPENSSL_INFO_LIST_SEPARATOR
176
177The OpenSSL list separator.
178This is typically used in strings that are lists of items, such as the
179value of the environment variable C<$PATH> on Unix (where the
180separator is ":") or C<%PATH%> on Windows (where the separator is
181";").
182
363e941e
BE
183=item OPENSSL_INFO_CPU_SETTINGS
184
185The current OpenSSL cpu settings.
186This is the current setting of the cpu capability flags. It is usually
187automatically configured but may be set via an environment variable.
188The value has the same syntax as the environment variable.
189For x86 the string looks like "OPENSSL_ia32cap=0x123:0x456".
190
0109e030
RL
191=back
192
193For an unknown B<t>, NULL is returned.
194
3a63dbef
RL
195=head1 BACKWARD COMPATIBILITY
196
197For compatibility, some older macros and functions are retained or
198synthesised.
199They are all considered deprecated.
200
201=head2 Macros
202
203B<OPENSSL_VERSION_NUMBER> is a combination of the major, minor and
204patch version into a single integer 0xMNN00PP0L, where:
205
206=over 4
207
208=item M
209
210is the number from B<OPENSSL_VERSION_MAJOR>, in hexadecimal notation
211
212=item NN
213
214is the number from B<OPENSSL_VERSION_MINOR>, in hexadecimal notation
215
216=item PP
217
218is the number from B<OPENSSL_VERSION_PATCH>, in hexadecimal notation
219
220=back
221
222=head2 Functions
223
224OpenSSL_version_num() returns the value of B<OPENSSL_VERSION_NUMBER>.
225
226=head1 RETURN VALUES
227
228OPENSSL_version_major(), OPENSSL_version_minor() and OPENSSL_version_patch()
229return the version number parts as integers.
230
231OPENSSL_version_pre_release() and OPENSSL_version_build_metadata() return
232the values of B<OPENSSL_VERSION_PRE_RELEASE> and
233B<OPENSSL_VERSION_BUILD_METADATA> respectively as constant strings.
234For any of them that is undefined, the empty string is returned.
235
236OpenSSL_version() returns constant strings.
237
238=head1 SEE ALSO
239
240L<crypto(7)>
241
242=head1 HISTORY
243
4674aaf4 244The macros and functions described here were added in OpenSSL 3.0,
3a63dbef
RL
245with the exception of the L</BACKWARD COMPATIBILITY> ones.
246
247=head1 COPYRIGHT
248
363e941e 249Copyright 2018-2019 The OpenSSL Project Authors. All Rights Reserved.
3a63dbef 250
4ace4ccd 251Licensed under the Apache License 2.0 (the "License"). You may not use
3a63dbef
RL
252this file except in compliance with the License. You can obtain a copy
253in the file LICENSE in the source distribution or at
254L<https://www.openssl.org/source/license.html>.
255
256=cut