Manual pages for EVP signing and verifying.
[openssl.git] / doc / crypto / OPENSSL_VERSION_NUMBER.pod
1 =pod
2
3 =head1 NAME
4
5 OPENSSL_VERSION_NUMBER, SSLeay - get OpenSSL version number
6
7 =head1 SYNOPSIS
8
9  #include <openssl/opensslv.h>
10  #define OPENSSL_VERSION_NUMBER 0xnnnnnnnnnL
11
12  #include <openssl/crypto.h>
13  long SSLeay(void);
14
15 =head1 DESCRIPTION
16
17 OPENSSL_VERSION_NUMBER is a numeric release version identifier:
18
19  MMNNFFRBB major minor fix final beta/patch
20
21 for example
22
23  0x000904100 == 0.9.4 release
24  0x000905000 == 0.9.5 dev
25
26 Versions prior to 0.9.3 have identifiers E<lt> 0x0930.
27 For backward compatibility, SSLEAY_VERSION_NUMBER is also defined.
28
29 SSLeay() returns this number. The return value can be compared to the
30 macro to make sure that the correct version of the library has been
31 loaded, especially when using DLLs on Windows systems.
32
33 =head1 RETURN VALUE
34
35 The version number.
36
37 =head1 SEE ALSO
38
39 L<crypto(3)|crypto(3)>
40
41 =head1 HISTORY
42
43 SSLeay() and SSLEAY_VERSION_NUMBER are available in all versions of SSLeay and OpenSSL.
44 OPENSSL_VERSION_NUMBER is available in all versions of OpenSSL.
45
46 =cut