Skip to content

Commit 2361870

Browse files
xhanulikfrankmorgner
authored andcommitted
0.25.0-rc1
1 parent fea9a4d commit 2361870

File tree

4 files changed

+47
-9
lines changed

4 files changed

+47
-9
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 0.24.0.{build}
1+
version: 0.25.0.{build}
22

33
platform:
44
- x86

NEWS

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,44 @@
11
NEWS for OpenSC -- History of user visible changes
22

3+
# New in 0.25.0; 2024-02-XX
4+
## Security
5+
* [CVE-2023-5992](https://github.com/OpenSC/OpenSC/wiki/CVE-2023-5992): Side-channel leaks while stripping encryption PKCS#1.5 padding in OpenSC (#2948)
6+
* [CVE-2024-1454](https://github.com/OpenSC/OpenSC/wiki/CVE-2024-1454): Potential use-after-free in AuthentIC driver during card enrollment in pkcs15init (#2962)
7+
8+
## General improvements
9+
* Update OpenSSL 1.1.1 to 3.0 in MacOS build (#2930)
10+
* Remove support for old card drivers Akis, GPK, Incrypto34 and Westcos, disable Cyberflex driver (#2885)
11+
* Fix 64b to 32b conversions (#2993)
12+
* Improvements for the p11test (#2991)
13+
* Fix reader initialization without SCardControl (#3007)
14+
* Make RSA PKCS#1 v1.5 depadding constant-time (#2948)
15+
* Add option for disabling PKCS#1 v1.5 depadding (type 01 and 02) on the card (#2975)
16+
* Enable MSI signing via Signpath CI integration for Windows (#2799)
17+
* Fixed various issues reported by OSS-Fuzz and Coverity in drivers, PKCS#11 and PKCS#15 layer
18+
19+
## minidriver
20+
* Fix wrong hash selection (#2932)
21+
22+
## pkcs11-tool
23+
* Simplify printing EC keys parameters (#2960)
24+
* Add option to import GENERIC key (#2955)
25+
* Add support for importing Ed25518/448 keys (#2985)
26+
## IDPrime
27+
* Support uncompressed certificates on IDPrime 940 (#2958)
28+
* Enhance IDPrime logging (#3003)
29+
## D-Trust Signature Cards
30+
* Add support for RSA D-Trust Signature Card 4.1 and 4.4 (#2943)
31+
## EstEID
32+
* Remove expired EstEID 3.* card support (#2950)
33+
## ePass2003
34+
* Allow SW implementation with more SHA2 hashes and ECDSA (#3012)
35+
## SmartCard-HSM
36+
* Fix SELECT APDU command (#2978)
37+
## MyEID
38+
* Update for PKCS#15 profile (#2965)
39+
## Rutoken
40+
* Support for RSA 4096 key algorithm (#3011)
41+
342
# New in 0.24.0; 2023-12-13
443
## Security
544
* CVE-2023-40660: Fix Potential PIN bypass (#2806, frankmorgner/OpenSCToken#50, #2807)

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ backport security fixes into them. Only the last release is supported.
99

1010
| Version | Supported |
1111
| -------- | ------------------ |
12-
| 0.24.0 | :white_check_mark: |
13-
| < 0.24.0 | :x: |
12+
| 0.25.0 | :white_check_mark: |
13+
| < 0.25.0 | :x: |
1414

1515
## Reporting a Vulnerability
1616

configure.ac

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ define([PRODUCT_TARNAME], [opensc])
77
define([PRODUCT_BUGREPORT], [https://github.com/OpenSC/OpenSC/issues])
88
define([PRODUCT_URL], [https://github.com/OpenSC/OpenSC])
99
define([PACKAGE_VERSION_MAJOR], [0])
10-
define([PACKAGE_VERSION_MINOR], [24])
10+
define([PACKAGE_VERSION_MINOR], [25])
1111
define([PACKAGE_VERSION_FIX], [0])
12-
define([PACKAGE_SUFFIX], [])
12+
define([PACKAGE_SUFFIX], [-rc1])
1313

1414
define([VS_FF_LEGAL_COPYRIGHT], [OpenSC Project])
1515
define([VS_FF_LEGAL_COMPANY_NAME], [OpenSC Project])
@@ -46,10 +46,9 @@ OPENSC_VS_FF_PRODUCT_URL="VS_FF_PRODUCT_URL"
4646
# (Code changed: REVISION++)
4747
# (Oldest interface changed/removed: OLDEST++)
4848
# (Interfaces added: CURRENT++, REVISION=0)
49-
OPENSC_LT_CURRENT="10"
50-
OPENSC_LT_OLDEST="8"
51-
OPENSC_LT_REVISION="1"
52-
OPENSC_LT_AGE="0"
49+
OPENSC_LT_CURRENT="11"
50+
OPENSC_LT_OLDEST="11"
51+
OPENSC_LT_REVISION="0"
5352
OPENSC_LT_AGE="$((${OPENSC_LT_CURRENT}-${OPENSC_LT_OLDEST}))"
5453

5554
AC_CONFIG_SRCDIR([src/libopensc/sc.c])

0 commit comments

Comments
 (0)