Skip to content

Commit

Permalink
Release v1.4.18: Release Fixes
Browse files Browse the repository at this point in the history
1. Need to use the old RSA key read function if using FIPS wolfCrypt.
2. Update release date.
  • Loading branch information
ejohnstown committed Jul 19, 2024
1 parent 4833238 commit ee42ef6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# wolfSSH v1.4.18 (July 20, 2024)
# wolfSSH v1.4.18 (July 22, 2024)

## New Features

Expand Down
2 changes: 1 addition & 1 deletion src/internal.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit ee42ef6

Please sign in to comment.