aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2022-05-15 21:39:01 -0500
committerBrent Cook <busterb@gmail.com>2022-05-15 21:40:32 -0500
commit5fe512b45f490af747f8eacc73d25dd41f761424 (patch)
tree55664607b07ca5bb84822a415d3f2e6fc6d7edf3
parentc9de0a4379821f3196896e2269c81f582d7f574d (diff)
downloadportable-3.5.3.tar.gz
portable-3.5.3.tar.bz2
portable-3.5.3.zip
3.5.3 stable updatev3.5.3
-rw-r--r--ChangeLog6
-rw-r--r--patches/opensslv.h18
2 files changed, 24 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e4dc7ad..4ecab20 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -28,6 +28,12 @@ history is also available from Git.
28 28
29LibreSSL Portable Release Notes: 29LibreSSL Portable Release Notes:
30 30
313.5.3 - Reliability fix
32
33 * Fix d2i_ASN1_OBJECT(). A confusion of two CBS resulted in advancing
34 the passed *der_in pointer incorrectly. Thanks to Aram Sargsyan for
35 reporting the issue and testing the fix.
36
313.5.2 - Stable release 373.5.2 - Stable release
32 38
33 * Bug fixes 39 * Bug fixes
diff --git a/patches/opensslv.h b/patches/opensslv.h
new file mode 100644
index 0000000..f24afb9
--- /dev/null
+++ b/patches/opensslv.h
@@ -0,0 +1,18 @@
1/* $OpenBSD: opensslv.h,v 1.69 2022/03/15 21:15:08 bcook Exp $ */
2#ifndef HEADER_OPENSSLV_H
3#define HEADER_OPENSSLV_H
4
5/* These will change with each release of LibreSSL-portable */
6#define LIBRESSL_VERSION_NUMBER 0x3050300fL
7/* ^ Patch starts here */
8#define LIBRESSL_VERSION_TEXT "LibreSSL 3.5.3"
9
10/* These will never change */
11#define OPENSSL_VERSION_NUMBER 0x20000000L
12#define OPENSSL_VERSION_TEXT LIBRESSL_VERSION_TEXT
13#define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT
14
15#define SHLIB_VERSION_HISTORY ""
16#define SHLIB_VERSION_NUMBER "1.0.0"
17
18#endif /* HEADER_OPENSSLV_H */