]>
Commit | Line | Data |
---|---|---|
b1ab9ed8 | 1 | /* |
d8f41ccd | 2 | * Copyright (c) 2000-2001,2011,2014 Apple Inc. All Rights Reserved. |
b1ab9ed8 A |
3 | * |
4 | * The contents of this file constitute Original Code as defined in and are | |
5 | * subject to the Apple Public Source License Version 1.2 (the 'License'). | |
6 | * You may not use this file except in compliance with the License. Please obtain | |
7 | * a copy of the License at http://www.apple.com/publicsource and read it before | |
8 | * using this file. | |
9 | * | |
10 | * This Original Code and all software distributed under the License are | |
11 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS | |
12 | * OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT | |
13 | * LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR | |
14 | * PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the | |
15 | * specific language governing rights and limitations under the License. | |
16 | */ | |
17 | ||
18 | ||
19 | #ifndef HEADER_OPENSSLV_H | |
20 | #define HEADER_OPENSSLV_H | |
21 | ||
22 | /* Numeric release version identifier: | |
23 | * MMNNFFPPS: major minor fix patch status | |
24 | * The status nibble has one of the values 0 for development, 1 to e for betas | |
25 | * 1 to 14, and f for release. The patch level is exactly that. | |
26 | * For example: | |
27 | * 0.9.3-dev 0x00903000 | |
28 | * 0.9.3-beta1 0x00903001 | |
29 | * 0.9.3-beta2-dev 0x00903002 | |
30 | * 0.9.3-beta2 0x00903002 (same as ...beta2-dev) | |
31 | * 0.9.3 0x0090300f | |
32 | * 0.9.3a 0x0090301f | |
33 | * 0.9.4 0x0090400f | |
34 | * 1.2.3z 0x102031af | |
35 | * | |
36 | * For continuity reasons (because 0.9.5 is already out, and is coded | |
37 | * 0x00905100), between 0.9.5 and 0.9.6 the coding of the patch level | |
38 | * part is slightly different, by setting the highest bit. This means | |
39 | * that 0.9.5a looks like this: 0x0090581f. At 0.9.6, we can start | |
40 | * with 0x0090600S... | |
41 | * | |
42 | * (Prior to 0.9.3-dev a different scheme was used: 0.9.2b is 0x0922.) | |
43 | * (Prior to 0.9.5a beta1, a different scheme was used: MMNNFFRBB for | |
44 | * major minor fix final patch/beta) | |
45 | */ | |
46 | #define OPENSSL_VERSION_NUMBER 0x0090581fL | |
47 | #define OPENSSL_VERSION_TEXT "OpenSSL 0.9.5a 1 Apr 2000" | |
48 | #define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT | |
49 | ||
50 | #endif /* HEADER_OPENSSLV_H */ |