Skip to content

Commit a0e43ee

Browse files
committed
Update to version 2.4.0
Signed-off-by: Ingo Franzki <ifranzki@linux.ibm.com>
1 parent 41d5fd0 commit a0e43ee

File tree

7 files changed

+24
-12
lines changed

7 files changed

+24
-12
lines changed

ChangeLog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
* openssl-ibmca 2.4.0
2+
- Provider: Adjustments for OpenSSL versions 3.1 and 3.2
3+
- Provider: Support RSA blinding
4+
- Provider: Constant-time fixes for RSA PKCS#1 v1.5 and OAEP padding
5+
- Provider: Support "implicit rejection" option for RSA PKCS#1 v1.5 padding
6+
- Provider: Adjustments in OpenSSL config generator and example configs
7+
- Engine: EC: Cache ICA key in EC_KEY object (performance improvement)
8+
- Engine: Enable RSA blinding
9+
110
* openssl-ibmca 2.3.1
211
- Adjustments for libica 4.1.0
312

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -191,14 +191,11 @@ To report a bug please submit a
191191
* distro release
192192
* openssl-ibmca package version
193193
* libica package version
194+
* OpenSSL package version
194195
* steps to reproduce the bug
195196

196-
Regarding technical or usage questions, send email to
197-
[opencryptoki-tech](
198-
https://sourceforge.net/p/opencryptoki/mailman/opencryptoki-tech) or
199-
[opencryptoki-users](
200-
https://sourceforge.net/p/opencryptoki/mailman/opencryptoki-users)
201-
mailing list respectively.
197+
Regarding technical or usage questions, also submit a
198+
[ticket](https://github.com/opencryptoki/openssl-ibmca/issues).
202199

203200
## Limitations
204201

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33
# See autoconf and autoscan online documentation for details.
44

5-
AC_INIT([openssl-ibmca], [2.3.1], [opencryptoki-users@lists.sf.net])
5+
AC_INIT([openssl-ibmca], [2.4.0], [https://github.com/opencryptoki/openssl-ibmca/issues],[],[https://github.com/opencryptoki/openssl-ibmca])
66
AC_CONFIG_SRCDIR([src/engine/e_ibmca.c]) # sanity check
77
AC_CONFIG_MACRO_DIR([m4])
88
AC_CONFIG_AUX_DIR([build-aux])

openssl-ibmca-provider.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# %global modulesdir %(pkg-config --variable=modulesdir libcrypto)
66

77
Name: openssl-ibmca
8-
Version: 2.3.1
8+
Version: 2.4.0
99
Release: 1%{?dist}
1010
Summary: An IBMCA OpenSSL dynamic provider
1111

@@ -45,6 +45,9 @@ mv -f src/provider/openssl.cnf.sample src/provider/openssl.cnf.sample.%{_arch}
4545
%dir %attr(777,root,root) %{_localstatedir}/log/ibmca
4646

4747
%changelog
48+
* Thu Mar 30 2023 Ingo Franzki <ifranzki@linux.ibm.com> 2.4.0
49+
- Update Version
50+
4851
* Fri Sep 30 2022 Juergen Christ <jchrist@linux.ibm.com> 2.3.1
4952
- Adjust to libica 4.1.0
5053

openssl-ibmca.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%global enginesdir %(pkg-config --variable=enginesdir libcrypto)
22

33
Name: openssl-ibmca
4-
Version: 2.3.1
4+
Version: 2.4.0
55
Release: 1%{?dist}
66
Summary: An IBMCA OpenSSL dynamic engine
77

@@ -44,6 +44,9 @@ popd
4444
%{_mandir}/man5/ibmca.5*
4545

4646
%changelog
47+
* Thu Mar 30 2023 Ingo Franzki <ifranzki@linux.ibm.com> 2.4.0
48+
- Update Version
49+
4750
* Fri Sep 30 2022 Juergen Christ <jchrist@linux.ibm.com> 2.3.1
4851
- Adjust to libica 4.1.0
4952

src/engine/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = 2:3:1
1+
VERSION = 2:4:0
22

33
lib_LTLIBRARIES=ibmca.la
44

src/provider/Makefile.am

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
VERSION = 2:3:1
2-
VERSION_STR = 2.3.1
1+
VERSION = 2:4:0
2+
VERSION_STR = 2.4.0
33

44
lib_LTLIBRARIES=ibmca-provider.la
55

0 commit comments

Comments
 (0)