Skip to content

Commit d7e5c35

Browse files
README & Version v0.6.19 update.
- Fix QAT_HW SHA3 small packet offload issue. Signed-off-by: Yogaraj Alamenda <yogarajx.alamenda@intel.com>
1 parent 2c5d2a6 commit d7e5c35

File tree

10 files changed

+81
-108
lines changed

10 files changed

+81
-108
lines changed

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

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

docs/limitations.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,11 @@
3131
of the Intel&reg; QAT driver for Linux. Use `--with-cc-opt="-DQAT_HW_DISABLE_NONZERO_MEMFREE"`
3232
in the Intel&reg; QAT OpenSSL\* Engine configuration when building against earlier
3333
versions of the Linux driver.
34-
* From **version 4.19** of Intel&reg; QAT driver for Linux, legacy or insecure algorithms such as DES,
35-
3DES, MD5, SHA1, RC4 are disabled by default so there will be failures observed in the relevant
36-
ciphers. Driver needs to be built with flag "--enable-legacy-algorithms" to enable those algorithms
37-
support.
34+
* From **version 4.19 and later** of Intel&reg; QAT driver for Linux, legacy or insecure
35+
algorithms such as DH, DSA, SHA1, RSA keysizes < 2048, EC curves < 256 bits are
36+
disabled by default hence there will be algo unsupported failures in the relevant ciphers.
37+
Driver needs to be built with flag "--enable-legacy-algorithms" to enable those
38+
algorithm support.
3839
* QAT Engine built for OpenSSL3.0 is only compatible with dependant libraries also linked with OpenSSL3.0
3940
libraries due to [OpenSSL#17112][1]. Same applies for OpenSSL 1.1.1.
4041
* SM4-GCM and SM4-CCM are only supported with BabaSSL versions based on OpenSSL 1.1.1.

docs/software_requirements.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ Technology Driver for Linux or Intel&reg; QuickAssist Technology
77
Driver for FreeBSD. This release was validated on the following:
88

99
* Operating system: CentOS* 8.4, Ubuntu\* 20.04.2 LTS & FreeBSD\* 12.3
10-
* Intel&reg; Communications Chipset C62X Series Software for Linux\*, version **4.19**
10+
* Intel&reg; Communications Chipset C62X Series Software for Linux\*, version **4.20**
1111
* Intel&reg; Communications Chipset C62X Series Software for FreeBSD\*, version **3.12**
1212
* OpenSSL\* 1.1.1s & 3.0.7
1313
* BoringSSL\* commit - [15596efa5f][1]
14-
* BabaSSL - 8.3.1
14+
* BabaSSL - 8.3.2
1515

1616
## qat_sw Requirements
1717
Successful operation of the Intel&reg; QAT Software acceleration requires a
@@ -29,11 +29,11 @@ This release was validated on the following:
2929

3030
* Operating system: Ubuntu\* 20.04.2 LTS
3131
* Intel&reg; Crypto Multi-buffer library from the [ipp-crypto][2] release
32-
version **IPP Crypto 2021.6**
32+
version **IPP Crypto 2021.7**
3333
* Intel&reg; Multi-Buffer crypto for IPsec Library release version **v1.3**
3434
* OpenSSL\* 1.1.1s & 3.0.7
3535
* BoringSSL\* commit - [15596efa5f][1]
36-
* BabaSSL - 8.3.1
36+
* BabaSSL - 8.3.2
3737

3838
[1]:https://github.com/google/boringssl/tree/15596efa5fe18e43bdc0ecd32d4ef93437f51d49
3939
[2]:https://github.com/intel/ipp-crypto

e_qat.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,13 +151,13 @@
151151
const char *engine_qat_id = STR(QAT_ENGINE_ID);
152152
#if defined(QAT_HW) && defined(QAT_SW)
153153
const char *engine_qat_name =
154-
"Reference implementation of QAT crypto engine(qat_hw & qat_sw) v0.6.18";
154+
"Reference implementation of QAT crypto engine(qat_hw & qat_sw) v0.6.19";
155155
#elif QAT_HW
156156
const char *engine_qat_name =
157-
"Reference implementation of QAT crypto engine(qat_hw) v0.6.18";
157+
"Reference implementation of QAT crypto engine(qat_hw) v0.6.19";
158158
#else
159159
const char *engine_qat_name =
160-
"Reference implementation of QAT crypto engine(qat_sw) v0.6.18";
160+
"Reference implementation of QAT crypto engine(qat_sw) v0.6.19";
161161
#endif
162162
unsigned int engine_inited = 0;
163163

0 commit comments

Comments
 (0)