Release v1.4.18: Release Fixes

1. Need to use the old RSA key read function if using FIPS wolfCrypt.
2. Update release date.
pull/727/head
John Safranek 2024-07-19 15:23:18 -07:00
parent 4833238318
commit ee42ef651f
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# wolfSSH v1.4.18 (July 20, 2024)
# wolfSSH v1.4.18 (July 22, 2024)
## New Features

View File

@ -1344,7 +1344,7 @@ int IdentifyAsn1Key(const byte* in, word32 inSz, int isPrivate, void* heap)
#ifndef WOLFSSH_NO_RSA
#if LIBWOLFSSL_VERSION_HEX > WOLFSSL_V5_7_0
#if (LIBWOLFSSL_VERSION_HEX > WOLFSSL_V5_7_0) && !defined(HAVE_FIPS)
/*
* The function wc_RsaPrivateKeyDecodeRaw() is available
* from wolfSSL after v5.7.0.