File tree Expand file tree Collapse file tree 3 files changed +23
-6
lines changed Expand file tree Collapse file tree 3 files changed +23
-6
lines changed Original file line number Diff line number Diff line change 11NEWS for Libp11 -- History of user visible changes
22
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)
421
522New in 0.4.11; 2020-10-11; Michał Trojnara
623* 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)
66define ( [ PACKAGE_VERSION_MAJOR] , [ 0] )
77define ( [ PACKAGE_VERSION_MINOR] , [ 4] )
88define ( [ PACKAGE_VERSION_FIX] , [ 12] )
9- define ( [ PACKAGE_SUFFIX] , [ _git ] )
9+ define ( [ PACKAGE_SUFFIX] , [ ] )
1010
1111AC_INIT ( [ libp11] ,[ PACKAGE_VERSION_MAJOR.PACKAGE_VERSION_MINOR.PACKAGE_VERSION_FIX[ ] PACKAGE_SUFFIX] )
1212AC_CONFIG_AUX_DIR ( [ .] )
5757# the openssl version we link to. If the ABI is broken on a later
5858# release, we should either stick to supporting a single openssl ABI
5959# 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 "
6262LIBP11_LT_AGE="$((${LIBP11_LT_CURRENT}-${LIBP11_LT_OLDEST}))"
6363
6464gl_LD_VERSION_SCRIPT
Original file line number Diff line number Diff line change 11#include <winresrc.h>
22
33VS_VERSION_INFO VERSIONINFO
4- FILEVERSION 7,4,3 ,0
4+ FILEVERSION 8,5,0 ,0
55 PRODUCTVERSION 0,4,12,0
66 FILEFLAGSMASK 0x3fL
77#ifdef _DEBUG
2020 VALUE "Comments", "Provided under the terms of the GNU General Public License (LGPLv2.1+).\0"
2121 VALUE "CompanyName", "OpenSC Project\0"
2222 VALUE "FileDescription", "PKCS#11 access library\0"
23- VALUE "FileVersion", "7.4.3 .0\0"
23+ VALUE "FileVersion", "8.5.0 .0\0"
2424 VALUE "InternalName", "libp11\0"
2525 VALUE "LegalCopyright", "OpenSC Project\0"
2626 VALUE "LegalTrademarks", "\0"
You can’t perform that action at this time.
0 commit comments