Skip to content

Commit 5a8005a

Browse files
authored
Merge pull request #36 from dgarske/rel-v4.8.0-async
Release v4.8.0 async
2 parents 65488cc + e699b85 commit 5a8005a

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

README-async.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,12 @@ wolfSSL Server Benchmark 16384 bytes
284284

285285
## Change Log
286286

287+
### wolfSSL Async Release v4.8.0 (07/14/2021)
288+
289+
* Fix for new QAT 1.7 hash types warning.
290+
* Updated Intel QAT 1.7 build instructions.
291+
* Includes possible HAVE_WOLF_BIGINT leaks in PR https://github.com/wolfSSL/wolfssl/pull/4208
292+
287293
### wolfSSL Async Release v4.7.0 (02/20/2021)
288294

289295
* Fix for ARC4 macro typo

wolfcrypt/src/port/intel/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,9 @@ OR
3232
```sh
3333
mkdir QAT1.7
3434
cd QAT1.7
35-
curl -o qat1.7.l.4.11.0-00001.tar.gz https://01.org/sites/default/files/downloads/qat1.7.l.4.11.0-00001.tar.gz
36-
tar -xvzf qat1.7.l.4.11.0-00001.tar.gz
35+
curl -o QAT1.7.L.4.14.0-00031.tar.gz https://downloadmirror.intel.com/30178/eng/QAT1.7.L.4.14.0-00031.tar.gz
36+
tar -xvzf QAT1.7.L.4.14.0-00031.tar.gz
3737
./configure
38-
make
3938
sudo make install
4039
...
4140
There is 3 QAT acceleration device(s) in the system:

wolfcrypt/src/port/intel/quickassist.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2579,6 +2579,13 @@ static int IntelQaSymHashGetInfo(CpaCySymHashAlgorithm hashAlgorithm,
25792579
case CPA_CY_SYM_HASH_AES_CBC_MAC:
25802580
#ifdef QAT_V2
25812581
case CPA_CY_SYM_HASH_ZUC_EIA3:
2582+
case CPA_CY_SYM_HASH_SHA3_224:
2583+
case CPA_CY_SYM_HASH_SHA3_384:
2584+
case CPA_CY_SYM_HASH_SHA3_512:
2585+
case CPA_CY_SYM_HASH_SHAKE_128:
2586+
case CPA_CY_SYM_HASH_SHAKE_256:
2587+
case CPA_CY_SYM_HASH_POLY:
2588+
case CPA_CY_SYM_HASH_SM3:
25822589
#endif
25832590
default:
25842591
return -1;

0 commit comments

Comments
 (0)