File tree 3 files changed +23
-6
lines changed
3 files changed +23
-6
lines changed Original file line number Diff line number Diff line change 1
1
NEWS for Libp11 -- History of user visible changes
2
2
3
- New in 0.4.12; unreleased
3
+ New in 0.4.12; 2022-07-15; Michał Trojnara
4
+ * Fixed using an explicitly provided PIN regardless of the secure login
5
+ flag (Alon Bar-Lev)
6
+ * Fixed RSA_PKCS1_PADDING handling (Michał Trojnara)
7
+ * Fixed a crash on LLP64, including 64-bit Windows (Małgorzata Olszówka)
8
+ * Fixed searching objects when both ID and label are specified (minfrin)
9
+ * Fixed the OAEP "source" parameter (S-P Chan)
10
+ * Fixed object searching by label (Michał Trojnara)
11
+ * Fixed thread safety in slot enumeration (Michał Trojnara)
12
+ * Fixed storing certificates on tokens (Mateusz Kwiatkowski)
13
+ * Fixed several memory leaks (Michał Trojnara, Jakub Jelen, Timo Teräs)
14
+ * Fixed OpenSSL 3.0 compatibility (Jakub Jelen)
15
+ * Fixed LibreSSL compatibility (orbea, patchMonkey156)
16
+ * Major concurrency improvements and refactoring (Timo Teräs)
17
+ * Added re-numeration of slots as an engine control command (Markus Koetter)
18
+ * Added the PKCS11_update_slots() API function (Timo Teräs)
19
+ * Added support for the SHA3 hash function (alegon01)
20
+ * Added a self-test for engine RSA operations (Uri Blumenthal)
4
21
5
22
New in 0.4.11; 2020-10-11; Michał Trojnara
6
23
* Fixed "EVP_PKEY_derive:buffer too small" EC errors (Luka Logar)
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ AC_PREREQ(2.60)
6
6
define ( [ PACKAGE_VERSION_MAJOR] , [ 0] )
7
7
define ( [ PACKAGE_VERSION_MINOR] , [ 4] )
8
8
define ( [ PACKAGE_VERSION_FIX] , [ 12] )
9
- define ( [ PACKAGE_SUFFIX] , [ _git ] )
9
+ define ( [ PACKAGE_SUFFIX] , [ ] )
10
10
11
11
AC_INIT ( [ libp11] ,[ PACKAGE_VERSION_MAJOR.PACKAGE_VERSION_MINOR.PACKAGE_VERSION_FIX[ ] PACKAGE_SUFFIX] )
12
12
AC_CONFIG_AUX_DIR ( [ .] )
57
57
# the openssl version we link to. If the ABI is broken on a later
58
58
# release, we should either stick to supporting a single openssl ABI
59
59
# or bump the LT_OLDEST version sufficiently to avoid clashes.
60
- LIBP11_LT_REVISION="3 "
61
- LIBP11_LT_CURRENT="7 "
60
+ LIBP11_LT_REVISION="0 "
61
+ LIBP11_LT_CURRENT="8 "
62
62
LIBP11_LT_AGE="$((${LIBP11_LT_CURRENT}-${LIBP11_LT_OLDEST}))"
63
63
64
64
gl_LD_VERSION_SCRIPT
Original file line number Diff line number Diff line change 1
1
#include <winresrc.h>
2
2
3
3
VS_VERSION_INFO VERSIONINFO
4
- FILEVERSION 7,4,3 ,0
4
+ FILEVERSION 8,5,0 ,0
5
5
PRODUCTVERSION 0,4,12,0
6
6
FILEFLAGSMASK 0x3fL
7
7
#ifdef _DEBUG
20
20
VALUE "Comments", "Provided under the terms of the GNU General Public License (LGPLv2.1+).\0"
21
21
VALUE "CompanyName", "OpenSC Project\0"
22
22
VALUE "FileDescription", "PKCS#11 access library\0"
23
- VALUE "FileVersion", "7.4.3 .0\0"
23
+ VALUE "FileVersion", "8.5.0 .0\0"
24
24
VALUE "InternalName", "libp11\0"
25
25
VALUE "LegalCopyright", "OpenSC Project\0"
26
26
VALUE "LegalTrademarks", "\0"
You can’t perform that action at this time.
0 commit comments