1999-05-29 14:14:56 +00:00
|
|
|
#ifndef HEADER_OPENSSLV_H
|
1999-05-18 09:19:28 +00:00
|
|
|
#define HEADER_OPENSSLV_H
|
|
|
|
|
1999-05-19 17:36:40 +00:00
|
|
|
/* Numeric release version identifier:
|
2000-03-19 09:35:19 +00:00
|
|
|
* MMNNFFPPS: major minor fix patch status
|
|
|
|
* The status nibble has one of the values 0 for development, 1 to e for betas
|
|
|
|
* 1 to 14, and f for release. The patch level is exactly that.
|
1999-05-19 17:36:40 +00:00
|
|
|
* For example:
|
1999-05-20 19:57:53 +00:00
|
|
|
* 0.9.3-dev 0x00903000
|
|
|
|
* 0.9.3beta1 0x00903001
|
|
|
|
* 0.9.3beta2-dev 0x00903002
|
2000-02-25 07:48:02 +00:00
|
|
|
* 0.9.3beta2 0x00903002 (same as ...beta2-dev)
|
2000-03-19 09:35:19 +00:00
|
|
|
* 0.9.3 0x0090300f
|
|
|
|
* 0.9.3a 0x0090301f
|
|
|
|
* 0.9.4 0x0090400f
|
|
|
|
* 1.2.3z 0x102031af
|
|
|
|
*
|
|
|
|
* For continuity reasons (because 0.9.5 is already out, and is coded
|
|
|
|
* 0x00905100), between 0.9.5 and 0.9.6 the coding of the patch level
|
|
|
|
* part is slightly different, by setting the highest bit. This means
|
|
|
|
* that 0.9.5a looks like this: 0x0090581f. At 0.9.6, we can start
|
|
|
|
* with 0x0090600S...
|
|
|
|
*
|
1999-05-19 18:08:35 +00:00
|
|
|
* (Prior to 0.9.3-dev a different scheme was used: 0.9.2b is 0x0922.)
|
2000-03-19 09:35:19 +00:00
|
|
|
* (Prior to 0.9.5a beta1, a different scheme was used: MMNNFFRBB for
|
|
|
|
* major minor fix final patch/beta)
|
1999-05-19 17:36:40 +00:00
|
|
|
*/
|
2000-03-19 09:35:19 +00:00
|
|
|
#define OPENSSL_VERSION_NUMBER 0x00905811L
|
|
|
|
#define OPENSSL_VERSION_TEXT "OpenSSL 0.9.5a beta1 (dev) 18 Mar 2000"
|
1999-03-22 12:22:14 +00:00
|
|
|
#define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT
|
1999-05-18 09:19:28 +00:00
|
|
|
|
|
|
|
#endif /* HEADER_OPENSSLV_H */
|