|
8 | 8 | * |
9 | 9 | * This file has been modified for use with AmiSSL for AmigaOS-based systems. |
10 | 10 | * |
11 | | - * Copyright 1999-2020 The OpenSSL Project Authors. All Rights Reserved. |
| 11 | + * Copyright 1999-2025 The OpenSSL Project Authors. All Rights Reserved. |
12 | 12 | * |
13 | 13 | * Licensed under the Apache License 2.0 (the "License"). You may not use |
14 | 14 | * this file except in compliance with the License. You can obtain a copy |
@@ -41,7 +41,7 @@ extern "C" { |
41 | 41 | */ |
42 | 42 | # define OPENSSL_VERSION_MAJOR 3 |
43 | 43 | # define OPENSSL_VERSION_MINOR 5 |
44 | | -# define OPENSSL_VERSION_PATCH 2 |
| 44 | +# define OPENSSL_VERSION_PATCH 3 |
45 | 45 |
|
46 | 46 | /* |
47 | 47 | * Additional version information |
@@ -86,33 +86,28 @@ extern "C" { |
86 | 86 | * longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and |
87 | 87 | * OPENSSL_VERSION_BUILD_METADATA_STR appended. |
88 | 88 | */ |
89 | | -# define OPENSSL_VERSION_STR "3.5.2" |
90 | | -# define OPENSSL_FULL_VERSION_STR "3.5.2" |
| 89 | +# define OPENSSL_VERSION_STR "3.5.3" |
| 90 | +# define OPENSSL_FULL_VERSION_STR "3.5.3" |
91 | 91 |
|
92 | 92 | /* |
93 | 93 | * SECTION 3: ADDITIONAL METADATA |
94 | 94 | * |
95 | 95 | * These strings are defined separately to allow them to be parsable. |
96 | 96 | */ |
97 | | -# define OPENSSL_RELEASE_DATE "5 Aug 2025" |
| 97 | +# define OPENSSL_RELEASE_DATE "16 Sep 2025" |
98 | 98 |
|
99 | 99 | /* |
100 | 100 | * SECTION 4: BACKWARD COMPATIBILITY |
101 | 101 | */ |
102 | 102 |
|
103 | | -# define OPENSSL_VERSION_TEXT "OpenSSL 3.5.2 5 Aug 2025" |
| 103 | +# define OPENSSL_VERSION_TEXT "OpenSSL 3.5.3 16 Sep 2025" |
104 | 104 |
|
105 | 105 | /* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */ |
106 | | -# ifdef OPENSSL_VERSION_PRE_RELEASE |
107 | | -# define _OPENSSL_VERSION_PRE_RELEASE 0x0L |
108 | | -# else |
109 | | -# define _OPENSSL_VERSION_PRE_RELEASE 0xfL |
110 | | -# endif |
111 | 106 | # define OPENSSL_VERSION_NUMBER \ |
112 | 107 | ( (OPENSSL_VERSION_MAJOR<<28) \ |
113 | 108 | |(OPENSSL_VERSION_MINOR<<20) \ |
114 | 109 | |(OPENSSL_VERSION_PATCH<<4) \ |
115 | | - |_OPENSSL_VERSION_PRE_RELEASE ) |
| 110 | + |0xfL ) |
116 | 111 |
|
117 | 112 | # ifdef __cplusplus |
118 | 113 | } |
|
0 commit comments