Skip to content

Commit 48a0e66

Browse files
authored
Merge pull request #353 from JacobBarthelmeh/release
Release version 1.4.7
2 parents 40079ed + 056bd8a commit 48a0e66

3 files changed

Lines changed: 28 additions & 3 deletions

File tree

ChangeLog.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
# wolfSSH v1.4.7 (July 23, 2021)
2+
3+
## New Feature Additions and Improvements
4+
5+
- SCP improvements to run on embedded RTOS
6+
- For SFTP messages, check both minimum bound and maximum bound of the length value
7+
- Added option for --enable-small-stack
8+
- Added SFTP support for FatFs
9+
- Added 192 and 256 bit support for AES-CBC, AES-CTR, and AES-GCM
10+
- Added options to disable algorithms. (ie WOLFSSH_NO_ECDSA, WOLFSSH_NO_AES_CBC, etc)
11+
- Improved handling of builds without ECC
12+
13+
14+
## Fixes
15+
- When processing public key user auth, initialize the key earlier
16+
- When processing public key user auth, use GetSize() instead of GetUint32()
17+
- Fix for better handling rekey
18+
- Fix for build with NO_WOLFSSH_CLIENT macro and --enable-all
19+
- Fix configuration with WOLFSSH_NO_DH
20+
- To add internal function to purge a packet in case building one fails
21+
- Fix for cleanup in error case with SFTP read packet
22+
- Fix initialization of DH Size values
23+
24+
--------------------------------
25+
126
# wolfSSH v1.4.6 (February 3, 2021)
227

328
## New Feature Additions

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# All right reserved.
44

55
AC_COPYRIGHT([Copyright (C) 2014-2020 wolfSSL Inc.])
6-
AC_INIT([wolfssh],[1.4.6],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
6+
AC_INIT([wolfssh],[1.4.7],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
77
AC_PREREQ([2.63])
88
AC_CONFIG_AUX_DIR([build-aux])
99

@@ -18,7 +18,7 @@ AC_ARG_PROGRAM
1818
AC_CONFIG_MACRO_DIR([m4])
1919
AC_CONFIG_HEADERS([src/config.h])
2020

21-
WOLFSSH_LIBRARY_VERSION=12:1:3
21+
WOLFSSH_LIBRARY_VERSION=12:2:3
2222
# | | |
2323
# +------+ | +---+
2424
# | | |

src/internal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6684,7 +6684,7 @@ int SendKexDhReply(WOLFSSH* ssh)
66846684
byte* output;
66856685
word32 idx;
66866686
byte msgId = MSGID_KEXDH_REPLY;
6687-
enum wc_HashType enmhashId;
6687+
enum wc_HashType enmhashId = WC_HASH_TYPE_NONE;
66886688
#ifndef WOLFSSH_NO_DH
66896689
byte *y_ptr = NULL;
66906690
const byte* primeGroup = NULL;

0 commit comments

Comments
 (0)