Skip to content

Commit 00077c2

Browse files
venkatesh6911Yogaraj-Alamenda
authored andcommitted
Version bump to 1.6.1 with README updates.
Signed-off-by: Venkatesh J <[email protected]>
1 parent 85fa710 commit 00077c2

6 files changed

+20
-17
lines changed

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.68])
5-
AC_INIT([qatengine], [1.6.0], [])
5+
AC_INIT([qatengine], [1.6.1], [])
66
AC_CONFIG_SRCDIR([config.h.in])
77
AC_CONFIG_HEADERS([config.h])
88
AC_CONFIG_AUX_DIR([.])

docs/software_requirements.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ that supports OpenSSL\* 1.1.1 or OpenSSL\* 3.0 or BoringSSL\* and Intel&reg; Qui
66
Technology Driver for Linux or Intel&reg; QuickAssist Technology
77
Driver for FreeBSD. This release was validated on the following:
88

9-
* Intel&reg; QuickAssist Technology Driver for Linux\* HW Version 2.0 (RHEL\* 8.6) - **QAT20.L.1.1.4000018**
10-
* Intel&reg; QuickAssist Technology Driver for Linux\* HW Version 1.7 & 1.8 (CentOS\* 8.4 & Ubuntu\* 20.04.2) - **QAT.L.4.24.0-00005**
9+
* Intel&reg; QuickAssist Technology Driver for Linux\* HW Version 2.0 (RHEL\* 9.3) - **QAT20.L.1.1.5000003**
10+
* Intel&reg; QuickAssist Technology Driver for Linux\* HW Version 1.7 & 1.8 (CentOS\* 8.4 & Ubuntu\* 22.04) - **QAT.L.4.25.0-00001**
1111
* Intel&reg; QuickAssist Technology Driver for FreeBSD\* HW Version 1.7 (FreeBSD\* 12.4) - **QAT.B.3.12.0-00004**
1212
* Intel&reg; QATlib for Linux - **QATlib 24.02.0**
1313
* Intel&reg; QATlib for FreeBSD (FreeBSD 14)- **FreeBSD QATlib 23.09.0**
14-
* OpenSSL\* 1.1.1w (for FreeBSD only) & 3.0.13
14+
* OpenSSL\* 1.1.1w (for FreeBSD only) & 3.0.14
1515
* BoringSSL\* commit - [23ed9d3][1]
1616
* Tongsuo - 8.4.0 (BabaSSL)
1717

@@ -31,7 +31,7 @@ This release was validated on the following:
3131

3232
* Operating system: Ubuntu\* 20.04.2 LTS
3333
* Intel&reg; Crypto Multi-buffer library from the [ipp-crypto][2] release
34-
version **IPP Crypto 2021.11** for OpenSSL & Tongsuo-8.4.0 (BabaSSL) and **IPP Crypto 2021.10** for BoringSSL
34+
version **IPP Crypto 2021.12.1** for OpenSSL & Tongsuo-8.4.0 (BabaSSL) and **IPP Crypto 2021.10** for BoringSSL
3535
* Intel&reg; Multi-Buffer crypto for IPsec Library release version **v1.5**
3636
* OpenSSL\* 3.0.13
3737
* BoringSSL\* commit - [23ed9d3][1]

driver_install.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/sh
22

33
#QAT_HW OOT driver Location
4-
QAT17_DRIVER=https://downloadmirror.intel.com/795697/QAT.L.4.24.0-00005.tar.gz
5-
QAT20_DRIVER=https://downloadmirror.intel.com/818498/QAT20.L.1.1.40-00018.tar.gz
4+
QAT17_DRIVER=https://downloadmirror.intel.com/823135/QAT.L.4.25.0-00001.tar.gz
5+
QAT20_DRIVER=https://downloadmirror.intel.com/822703/QAT20.L.1.1.50-00003.tar.gz
66

77
#Supported Devices
88
numC62xDevice=`lspci -vnd 8086: | grep -c "37c8\|37c9"`

e_qat.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -164,13 +164,13 @@ int qat_fips_kat_test;
164164
const char *engine_qat_id = STR(QAT_ENGINE_ID);
165165
#if defined(QAT_HW) && defined(QAT_SW)
166166
const char *engine_qat_name =
167-
"Reference implementation of QAT crypto engine(qat_hw & qat_sw) v1.6.0";
167+
"Reference implementation of QAT crypto engine(qat_hw & qat_sw) v1.6.1";
168168
#elif QAT_HW
169169
const char *engine_qat_name =
170-
"Reference implementation of QAT crypto engine(qat_hw) v1.6.0";
170+
"Reference implementation of QAT crypto engine(qat_hw) v1.6.1";
171171
#else
172172
const char *engine_qat_name =
173-
"Reference implementation of QAT crypto engine(qat_sw) v1.6.0";
173+
"Reference implementation of QAT crypto engine(qat_sw) v1.6.1";
174174
#endif
175175
unsigned int engine_inited = 0;
176176
int fallback_to_openssl = 0;

qatengine-oot.spec

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,27 @@
1212
%global fullversion %{major}.%{minor}.%{rev}
1313

1414
%global ippcp_major 11
15-
%global ippcp_minor 13
15+
%global ippcp_minor 15
1616
%global ippcp ipp-crypto
17-
%global ippcpver ippcp_2021.11.1
17+
%global ippcpver ippcp_2021.12.1
1818
%global ippcpfull %{ippcp}-%{ippcpver}
1919
%global ippcpfullversion %{ippcp_major}.%{ippcp_minor}
2020

21-
%global openssl openssl-3.0.13
22-
%global qatdriver QAT20.L.1.1.40-00018
21+
%global openssl openssl-3.0.14
22+
%global qatdriver QAT20.L.1.1.50-00003
2323

2424
%global openssl_source %{_builddir}/%{openssl}
2525
%global openssl_install %{buildroot}/%{_prefix}/local/ssl
2626

2727
Name: QAT_Engine
28-
Version: 1.6.0
28+
Version: 1.6.1
2929
Release: 1%{?dist}
3030
Summary: Intel QuickAssist Technology(QAT) OpenSSL Engine
3131
License: BSD-3-Clause AND OpenSSL
3232

3333
Source0: https://github.com/intel/QAT_Engine/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
3434
Source1: https://github.com/openssl/openssl/releases/download/%{openssl}/%{openssl}.tar.gz#/%{openssl}.tar.gz
35-
Source2: https://downloadmirror.intel.com/818498/%{qatdriver}.tar.gz#/%{qatdriver}.tar.gz
35+
Source2: https://downloadmirror.intel.com/822703/%{qatdriver}.tar.gz#/%{qatdriver}.tar.gz
3636
%if !0%{?suse_version}
3737
Source3: https://github.com/intel/ipp-crypto/archive/refs/tags/%{ippcpver}.tar.gz#/%{ippcp}-%{ippcpver}.tar.gz
3838
Source4: https://github.com/intel/intel-ipsec-mb/archive/refs/tags/v%{ipsecver}.tar.gz#/%{ipsecfull}.tar.gz

qatengine.spec

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
%global enginesdir %(pkg-config --variable=enginesdir libcrypto)
55

66
Name: qatengine
7-
Version: 1.6.0
7+
Version: 1.6.1
88
Release: 1%{?dist}
99
Summary: Intel QuickAssist Technology (QAT) OpenSSL Engine
1010

@@ -70,6 +70,9 @@ openssl engine -v %{name}
7070
%{enginesdir}/%{name}.so
7171

7272
%changelog
73+
* Thu Jun 20 2024 Venkatesh J <[email protected]> - 1.6.1-1
74+
- Update to qatengine v1.6.1
75+
7376
* Thu Mar 14 2024 Jaya Naga Venkata Sudhakar <[email protected]> - 1.6.0-1
7477
- Update to qatengine v1.6.0
7578

0 commit comments

Comments
 (0)