mirror of https://github.com/wolfSSL/wolfssh.git
Merge pull request #672 from ejohnstown/release-v1.4.17
Prepare Release v1.4.17pull/673/head v1.4.17-stable
commit
9204ae7119
52
ChangeLog.md
52
ChangeLog.md
|
@ -1,3 +1,55 @@
|
||||||
|
# wolfSSH v1.4.17 (March 25, 2024)
|
||||||
|
|
||||||
|
## Vulnerabilities
|
||||||
|
|
||||||
|
* Fixes a vulnerability where a properly crafted SSH client can bypass user
|
||||||
|
authentication in the wolfSSH server code. The added fix filters the
|
||||||
|
messages that are allowed during different operational states.
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
* When building wolfSSL/wolfCrypt versions before v5.6.6 with CMake,
|
||||||
|
wolfSSH may have a problem with RSA keys. This is due to wolfSSH not
|
||||||
|
checking on the size of `___uint128_t`. wolfSSH sees the RSA structure
|
||||||
|
as the wrong size. You will have to define `HAVE___UINT128_T` if you
|
||||||
|
know you have it and are using it in wolfSSL. wolfSSL v5.6.6 exports that
|
||||||
|
define in options.h when using CMake.
|
||||||
|
* The example server in directory examples/server/server.c has been removed.
|
||||||
|
It was never kept up to date, the echoserver did its job as an example and
|
||||||
|
test server.
|
||||||
|
|
||||||
|
## New Features
|
||||||
|
|
||||||
|
* Added functions to set algorithms lists for KEX at run-time, and some
|
||||||
|
functions to inspect which algorithms are set or are available to use.
|
||||||
|
* In v1.4.15, we had disabled SHA-1 in the build by default. SHA-1 has been
|
||||||
|
re-enabled in the build and is now "soft" disabled, where algorithms using
|
||||||
|
it can be configured for KEX.
|
||||||
|
* Add Curve25519 KEX support for server/client key agreement.
|
||||||
|
|
||||||
|
## Improvements
|
||||||
|
|
||||||
|
* Clean up some issues when building for Nucleus.
|
||||||
|
* Clean up some issues when building for Windows.
|
||||||
|
* Clean up some issues when building for QNX.
|
||||||
|
* Added more wolfSSHd testing.
|
||||||
|
* Added more appropriate build option guard checking.
|
||||||
|
* General improvements for the ESP32 builds.
|
||||||
|
* Better terminal support in Windows.
|
||||||
|
* Better I/O pipes and return codes when running commands or scripts over an
|
||||||
|
SSH connection.
|
||||||
|
|
||||||
|
## Fixes
|
||||||
|
|
||||||
|
* Fix shell terminal window resizing and it sets up the environment better.
|
||||||
|
* Fix some corner cases with the SFTP testing.
|
||||||
|
* Fix some corner cases with SFTP in general.
|
||||||
|
* Fix verifying RSA signatures.
|
||||||
|
* Add masking of file mode bits for Zephyr.
|
||||||
|
* Fix leak of terminal modes cache.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
# wolfSSH v1.4.15 (December 22, 2023)
|
# wolfSSH v1.4.15 (December 22, 2023)
|
||||||
|
|
||||||
## Vulnerabilities
|
## Vulnerabilities
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* common.c
|
/* common.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
@ -451,7 +451,8 @@ int ClientPublicKeyCheck(const byte* pubKey, word32 pubKeySz, void* ctx)
|
||||||
current->ipString);
|
current->ipString);
|
||||||
WLOG(WS_LOG_DEBUG,
|
WLOG(WS_LOG_DEBUG,
|
||||||
"\texpecting host IP : %s", (char*)ctx);
|
"\texpecting host IP : %s", (char*)ctx);
|
||||||
if (XSTRCMP(ctx, current->ipString) == 0) {
|
if (XSTRCMP((const char*)ctx,
|
||||||
|
current->ipString) == 0) {
|
||||||
WLOG(WS_LOG_DEBUG, "\tmatched!");
|
WLOG(WS_LOG_DEBUG, "\tmatched!");
|
||||||
ipMatch = 1;
|
ipMatch = 1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* common.h
|
/* common.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* wolfssh.c
|
/* wolfssh.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
@ -794,7 +794,7 @@ static int config_parse_command_line(struct config* config,
|
||||||
free(config->user);
|
free(config->user);
|
||||||
}
|
}
|
||||||
sz = WSTRLEN(cursor);
|
sz = WSTRLEN(cursor);
|
||||||
config->user = WMALLOC(sz + 1, NULL, 0);
|
config->user = (char*)WMALLOC(sz + 1, NULL, 0);
|
||||||
strcpy(config->user, cursor);
|
strcpy(config->user, cursor);
|
||||||
cursor = found + 1;
|
cursor = found + 1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* auth.c
|
/* auth.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* auth.h
|
/* auth.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* configuration.c
|
/* configuration.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* configuration.h
|
/* configuration.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* wolfsshd.c
|
/* wolfsshd.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
@ -1391,8 +1391,9 @@ static int SHELL_Subsystem(WOLFSSHD_CONNECTION* conn, WOLFSSH* ssh,
|
||||||
#if defined(HAVE_SYS_IOCTL_H)
|
#if defined(HAVE_SYS_IOCTL_H)
|
||||||
wolfSSH_DoModes(ssh->modes, ssh->modesSz, childFd);
|
wolfSSH_DoModes(ssh->modes, ssh->modesSz, childFd);
|
||||||
{
|
{
|
||||||
struct winsize s = {0};
|
struct winsize s;
|
||||||
|
|
||||||
|
WMEMSET(&s, 0, sizeof(s));
|
||||||
s.ws_col = ssh->widthChar;
|
s.ws_col = ssh->widthChar;
|
||||||
s.ws_row = ssh->heightRows;
|
s.ws_row = ssh->heightRows;
|
||||||
s.ws_xpixel = ssh->widthPixels;
|
s.ws_xpixel = ssh->widthPixels;
|
||||||
|
|
19
configure.ac
19
configure.ac
|
@ -1,9 +1,9 @@
|
||||||
# wolfssh
|
# wolfssh
|
||||||
# Copyright (C) 2014-2023 wolfSSL Inc.
|
# Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
# All right reserved.
|
# All right reserved.
|
||||||
|
|
||||||
AC_COPYRIGHT([Copyright (C) 2014-2023 wolfSSL Inc.])
|
AC_COPYRIGHT([Copyright (C) 2014-2024 wolfSSL Inc.])
|
||||||
AC_INIT([wolfssh],[1.4.16],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
|
AC_INIT([wolfssh],[1.4.17],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
|
||||||
AC_PREREQ([2.63])
|
AC_PREREQ([2.63])
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
|
|
||||||
|
@ -18,18 +18,19 @@ AC_ARG_PROGRAM
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AC_CONFIG_HEADERS([config.h])
|
AC_CONFIG_HEADERS([config.h])
|
||||||
|
|
||||||
WOLFSSH_LIBRARY_VERSION=15:3:8
|
WOLFSSH_LIBRARY_VERSION=16:0:9
|
||||||
# | | |
|
# | | |
|
||||||
# +------+ | +---+
|
# +-----+ | +----+
|
||||||
# | | |
|
# | | |
|
||||||
# current:revision:age
|
# current:revision:age
|
||||||
# | | |
|
# | | |
|
||||||
# | | +- increment if interfaces have been added
|
# | | +- increment if interfaces have been added
|
||||||
# | | set to zero if interfaces have been removed
|
# | | +- set to zero if interfaces have been
|
||||||
# | | or changed
|
# | | removed or changed
|
||||||
# | +- increment if source code has changed
|
# | +- increment if source code has changed
|
||||||
# | set to zero if current is incremented
|
# | +- set to zero if current is incremented
|
||||||
# +- increment if interfaces have been added, removed or changed
|
# +- increment if interfaces have been added, removed
|
||||||
|
# or changed
|
||||||
AC_SUBST([WOLFSSH_LIBRARY_VERSION])
|
AC_SUBST([WOLFSSH_LIBRARY_VERSION])
|
||||||
|
|
||||||
LT_PREREQ([2.2])
|
LT_PREREQ([2.2])
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* client.c
|
/* client.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* client.h
|
/* client.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* common.c
|
/* common.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
@ -403,7 +403,8 @@ int ClientPublicKeyCheck(const byte* pubKey, word32 pubKeySz, void* ctx)
|
||||||
current->ipString);
|
current->ipString);
|
||||||
WLOG(WS_LOG_DEBUG,
|
WLOG(WS_LOG_DEBUG,
|
||||||
"\texpecting host IP : %s", (char*)ctx);
|
"\texpecting host IP : %s", (char*)ctx);
|
||||||
if (XSTRCMP(ctx, current->ipString) == 0) {
|
if (XSTRCMP((const char*)ctx,
|
||||||
|
current->ipString) == 0) {
|
||||||
WLOG(WS_LOG_DEBUG, "\tmatched!");
|
WLOG(WS_LOG_DEBUG, "\tmatched!");
|
||||||
ipMatch = 1;
|
ipMatch = 1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* common.h
|
/* common.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* echoserver.c
|
/* echoserver.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* echoserver.h
|
/* echoserver.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* portfwd.c
|
/* portfwd.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* wolfssh_portfwd.h
|
/* wolfssh_portfwd.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* scpclient.c
|
/* scpclient.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* scpclient.h
|
/* scpclient.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* sftpclient.c
|
/* sftpclient.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* sftpclient.h
|
/* sftpclient.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/* wolfssl options.h
|
/* wolfssl options.h
|
||||||
* generated from configure options
|
* generated from configure options
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,22 +1,21 @@
|
||||||
# [wolfSSL Project]/CMakeLists.txt
|
# [wolfSSL Project]/CMakeLists.txt
|
||||||
#
|
#
|
||||||
# Copyright (C) 2006-2023 WOLFSSL Inc.
|
# Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
#
|
#
|
||||||
# This file is part of WOLFSSH.
|
# This file is part of wolfSSH.
|
||||||
#
|
#
|
||||||
# WOLFSSH is free software; you can redistribute it and/or modify
|
# wolfSSH is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
# the Free Software Foundation; either version 3 of the License, or
|
||||||
# (at your option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# WOLFSSH is distributed in the hope that it will be useful,
|
# wolfSSH is distributed in the hope that it will be useful,
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program; if not, write to the Free Software
|
# along with wolfSSH. If not, see <http://www.gnu.org/licenses/>.
|
||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
||||||
#
|
#
|
||||||
# cmake for WOLFSSH Espressif projects
|
# cmake for WOLFSSH Espressif projects
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,22 +1,21 @@
|
||||||
# [wolfSSL Project]/components/wolfssh/CMakeLists.txt
|
# [wolfSSL Project]/components/wolfssh/CMakeLists.txt
|
||||||
#
|
#
|
||||||
# Copyright (C) 2006-2023 WOLFSSL Inc.
|
# Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
#
|
#
|
||||||
# This file is part of WOLFSSH.
|
# This file is part of wolfSSH.
|
||||||
#
|
#
|
||||||
# WOLFSSH is free software; you can redistribute it and/or modify
|
# wolfSSH is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
# the Free Software Foundation; either version 3 of the License, or
|
||||||
# (at your option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# WOLFSSH is distributed in the hope that it will be useful,
|
# wolfSSH is distributed in the hope that it will be useful,
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program; if not, write to the Free Software
|
# along with wolfSSH. If not, see <http://www.gnu.org/licenses/>.
|
||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
||||||
#
|
#
|
||||||
# cmake for WOLFSSH Espressif projects v5.6.6 r1
|
# cmake for WOLFSSH Espressif projects v5.6.6 r1
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,21 +1,20 @@
|
||||||
#
|
#
|
||||||
# Copyright (C) 2006-2023 wolfSSL Inc.
|
# Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
#
|
#
|
||||||
# This file is part of wolfSSL.
|
# This file is part of wolfSSH.
|
||||||
#
|
#
|
||||||
# wolfSSL is free software; you can redistribute it and/or modify
|
# wolfSSH is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
# the Free Software Foundation; either version 3 of the License, or
|
||||||
# (at your option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# wolfSSL is distributed in the hope that it will be useful,
|
# wolfSSH is distributed in the hope that it will be useful,
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program; if not, write to the Free Software
|
# along with wolfSSH. If not, see <http://www.gnu.org/licenses/>.
|
||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
||||||
#
|
#
|
||||||
# cmake for wolfssl Espressif projects
|
# cmake for wolfssl Espressif projects
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,22 +1,21 @@
|
||||||
/* user_settings.h
|
/* user_settings.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2006-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSL.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
* wolfSSL is free software; you can redistribute it and/or modify
|
* wolfSSH is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* wolfSSL is distributed in the hope that it will be useful,
|
* wolfSSH is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with wolfSSH. If not, see <http://www.gnu.org/licenses/>.
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sdkconfig.h> /* essential to chip set detection */
|
#include <sdkconfig.h> /* essential to chip set detection */
|
||||||
|
|
|
@ -1,22 +1,21 @@
|
||||||
# [wolfSSL Project]/main/CMakeLists.txt
|
# [wolfSSL Project]/main/CMakeLists.txt
|
||||||
#
|
#
|
||||||
# Copyright (C) 2006-2023 WOLFSSL Inc.
|
# Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
#
|
#
|
||||||
# This file is part of WOLFSSH.
|
# This file is part of wolfSSH.
|
||||||
#
|
#
|
||||||
# WOLFSSH is free software; you can redistribute it and/or modify
|
# wolfSSH is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
# the Free Software Foundation; either version 3 of the License, or
|
||||||
# (at your option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# WOLFSSH is distributed in the hope that it will be useful,
|
# wolfSSH is distributed in the hope that it will be useful,
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program; if not, write to the Free Software
|
# along with wolfSSH. If not, see <http://www.gnu.org/licenses/>.
|
||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
||||||
#
|
#
|
||||||
# cmake for WOLFSSH Espressif projects
|
# cmake for WOLFSSH Espressif projects
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* echoserver.c
|
/* echoserver.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* echoserver.h
|
/* echoserver.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,22 +1,21 @@
|
||||||
/* template main.h
|
/* template main.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2006-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSL.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
* wolfSSL is free software; you can redistribute it and/or modify
|
* wolfSSH is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* wolfSSL is distributed in the hope that it will be useful,
|
* wolfSSH is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with wolfSSH. If not, see <http://www.gnu.org/licenses/>.
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
||||||
*/
|
*/
|
||||||
#ifndef _MAIN_H_
|
#ifndef _MAIN_H_
|
||||||
#define _MAIN_H_
|
#define _MAIN_H_
|
||||||
|
|
|
@ -1,21 +1,20 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2006-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSL.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
* wolfSSL is free software; you can redistribute it and/or modify
|
* wolfSSH is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* wolfSSL is distributed in the hope that it will be useful,
|
* wolfSSH is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with wolfSSH. If not, see <http://www.gnu.org/licenses/>.
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* common Espressif time_helper v5.6.3.001 */
|
/* common Espressif time_helper v5.6.3.001 */
|
||||||
|
|
|
@ -1,22 +1,21 @@
|
||||||
/* wifi_connect.h
|
/* wifi_connect.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2006-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSL.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
* wolfSSL is free software; you can redistribute it and/or modify
|
* wolfSSH is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* wolfSSL is distributed in the hope that it will be useful,
|
* wolfSSH is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with wolfSSH. If not, see <http://www.gnu.org/licenses/>.
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
||||||
*/
|
*/
|
||||||
#ifndef _WIFI_CONNECT_H_
|
#ifndef _WIFI_CONNECT_H_
|
||||||
#define _WIFI_CONNECT_H_
|
#define _WIFI_CONNECT_H_
|
||||||
|
|
|
@ -1,22 +1,21 @@
|
||||||
/* main.c
|
/* main.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2006-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSL.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
* wolfSSL is free software; you can redistribute it and/or modify
|
* wolfSSH is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* wolfSSL is distributed in the hope that it will be useful,
|
* wolfSSH is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with wolfSSH. If not, see <http://www.gnu.org/licenses/>.
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
||||||
*/
|
*/
|
||||||
#include "sdkconfig.h"
|
#include "sdkconfig.h"
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
|
|
|
@ -1,22 +1,21 @@
|
||||||
/* time_helper.c
|
/* time_helper.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2006-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSL.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
* wolfSSL is free software; you can redistribute it and/or modify
|
* wolfSSH is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* wolfSSL is distributed in the hope that it will be useful,
|
* wolfSSH is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with wolfSSH. If not, see <http://www.gnu.org/licenses/>.
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* common Espressif time_helper v5.6.3.002 */
|
/* common Espressif time_helper v5.6.3.002 */
|
||||||
|
|
|
@ -1,22 +1,21 @@
|
||||||
/* wifi_connect.c
|
/* wifi_connect.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2006-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSL.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
* wolfSSL is free software; you can redistribute it and/or modify
|
* wolfSSH is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* wolfSSL is distributed in the hope that it will be useful,
|
* wolfSSH is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with wolfSSH. If not, see <http://www.gnu.org/licenses/>.
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
||||||
*/
|
*/
|
||||||
#include "wifi_connect.h"
|
#include "wifi_connect.h"
|
||||||
|
|
||||||
|
|
|
@ -1,22 +1,21 @@
|
||||||
# Espressif component/wolfssh/CMakeLists.txt
|
# Espressif component/wolfssh/CMakeLists.txt
|
||||||
#
|
#
|
||||||
# Copyright (C) 2006-2023 WOLFSSL Inc.
|
# Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
#
|
#
|
||||||
# This file is part of WOLFSSH.
|
# This file is part of wolfSSH.
|
||||||
#
|
#
|
||||||
# WOLFSSH is free software; you can redistribute it and/or modify
|
# wolfSSH is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
# the Free Software Foundation; either version 3 of the License, or
|
||||||
# (at your option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# WOLFSSH is distributed in the hope that it will be useful,
|
# wolfSSH is distributed in the hope that it will be useful,
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program; if not, write to the Free Software
|
# along with wolfSSH. If not, see <http://www.gnu.org/licenses/>.
|
||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
||||||
#
|
#
|
||||||
# cmake for WOLFSSH Espressif projects
|
# cmake for WOLFSSH Espressif projects
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,21 +1,20 @@
|
||||||
#
|
#
|
||||||
# Copyright (C) 2006-2023 wolfSSL Inc.
|
# Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
#
|
#
|
||||||
# This file is part of wolfSSL.
|
# This file is part of wolfSSH.
|
||||||
#
|
#
|
||||||
# wolfSSL is free software; you can redistribute it and/or modify
|
# wolfSSH is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
# the Free Software Foundation; either version 3 of the License, or
|
||||||
# (at your option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# wolfSSL is distributed in the hope that it will be useful,
|
# wolfSSH is distributed in the hope that it will be useful,
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program; if not, write to the Free Software
|
# along with wolfSSH. If not, see <http://www.gnu.org/licenses/>.
|
||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
||||||
#
|
#
|
||||||
# cmake for wolfssl Espressif projects
|
# cmake for wolfssl Espressif projects
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,22 +1,21 @@
|
||||||
/* user_settings.h
|
/* user_settings.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2006-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSL.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
* wolfSSL is free software; you can redistribute it and/or modify
|
* wolfSSH is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* wolfSSL is distributed in the hope that it will be useful,
|
* wolfSSH is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with wolfSSH. If not, see <http://www.gnu.org/licenses/>.
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sdkconfig.h> /* essential to chip set detection */
|
#include <sdkconfig.h> /* essential to chip set detection */
|
||||||
|
|
|
@ -1,22 +1,21 @@
|
||||||
# [wolfSSL Project]/main/CMakeLists.txt
|
# [wolfSSL Project]/main/CMakeLists.txt
|
||||||
#
|
#
|
||||||
# Copyright (C) 2006-2023 WOLFSSL Inc.
|
# Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
#
|
#
|
||||||
# This file is part of WOLFSSH.
|
# This file is part of wolfSSH.
|
||||||
#
|
#
|
||||||
# WOLFSSH is free software; you can redistribute it and/or modify
|
# wolfSSH is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
# the Free Software Foundation; either version 3 of the License, or
|
||||||
# (at your option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# WOLFSSH is distributed in the hope that it will be useful,
|
# wolfSSH is distributed in the hope that it will be useful,
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program; if not, write to the Free Software
|
# along with wolfSSH. If not, see <http://www.gnu.org/licenses/>.
|
||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
||||||
#
|
#
|
||||||
# cmake for WOLFSSH Espressif projects
|
# cmake for WOLFSSH Espressif projects
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,22 +1,21 @@
|
||||||
/* template main.h
|
/* template main.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2006-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSL.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
* wolfSSL is free software; you can redistribute it and/or modify
|
* wolfSSH is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* wolfSSL is distributed in the hope that it will be useful,
|
* wolfSSH is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with wolfSSH. If not, see <http://www.gnu.org/licenses/>.
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
||||||
*/
|
*/
|
||||||
#ifndef _MAIN_H_
|
#ifndef _MAIN_H_
|
||||||
#define _MAIN_H_
|
#define _MAIN_H_
|
||||||
|
|
|
@ -1,22 +1,21 @@
|
||||||
/* main.c
|
/* main.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2006-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSL.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
* wolfSSL is free software; you can redistribute it and/or modify
|
* wolfSSH is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* wolfSSL is distributed in the hope that it will be useful,
|
* wolfSSH is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with wolfSSH. If not, see <http://www.gnu.org/licenses/>.
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
|
||||||
*/
|
*/
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* dummy_filesystem.h
|
/* dummy_filesystem.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* strings.h
|
/* strings.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* unistd.h
|
/* unistd.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* user_settings.h
|
/* user_settings.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* wolfssh_csplus_usersettings..h
|
/* wolfssh_csplus_usersettings..h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* wolfssh_demo.c
|
/* wolfssh_demo.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* wolfssh_demo.h
|
/* wolfssh_demo.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* wolfssh_dummy.c
|
/* wolfssh_dummy.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* main.c
|
/* main.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* myFilesystem.h
|
/* myFilesystem.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* userio_template.h
|
/* userio_template.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* wolfssh_test.c
|
/* wolfssh_test.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* wolfssh_test.h
|
/* wolfssh_test.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* agent.c
|
/* agent.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* certman.c
|
/* certman.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* internal.c
|
/* internal.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
2
src/io.c
2
src/io.c
|
@ -1,6 +1,6 @@
|
||||||
/* io.c
|
/* io.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* keygen.c
|
/* keygen.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* log.c
|
/* log.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* misc.c
|
/* misc.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* port.c
|
/* port.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* ssh.c
|
/* ssh.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* wolfscp.c
|
/* wolfscp.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* wolfsftp.c
|
/* wolfsftp.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
@ -2042,7 +2042,8 @@ int wolfSSH_SFTP_RecvOpen(WOLFSSH* ssh, int reqId, byte* data, word32 maxSz)
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
WS_SFTP_FILEATRB fileAtr = { 0 };
|
WS_SFTP_FILEATRB fileAtr;
|
||||||
|
WMEMSET(&fileAtr, 0, sizeof(fileAtr));
|
||||||
if (SFTP_GetAttributes(ssh->fs,
|
if (SFTP_GetAttributes(ssh->fs,
|
||||||
dir, &fileAtr, 1, ssh->ctx->heap) == WS_SUCCESS) {
|
dir, &fileAtr, 1, ssh->ctx->heap) == WS_SUCCESS) {
|
||||||
if ((fileAtr.per & FILEATRB_PER_MASK_TYPE) != FILEATRB_PER_FILE) {
|
if ((fileAtr.per & FILEATRB_PER_MASK_TYPE) != FILEATRB_PER_FILE) {
|
||||||
|
@ -8767,7 +8768,8 @@ int wolfSSH_SFTP_Put(WOLFSSH* ssh, char* from, char* to, byte resume,
|
||||||
WLOG(WS_LOG_SFTP, "SFTP PUT STATE: OPEN LOCAL");
|
WLOG(WS_LOG_SFTP, "SFTP PUT STATE: OPEN LOCAL");
|
||||||
#ifndef USE_WINDOWS_API
|
#ifndef USE_WINDOWS_API
|
||||||
{
|
{
|
||||||
WS_SFTP_FILEATRB fileAtr = { 0 };
|
WS_SFTP_FILEATRB fileAtr;
|
||||||
|
WMEMSET(&fileAtr, 0, sizeof(fileAtr));
|
||||||
if (SFTP_GetAttributes(ssh->fs,
|
if (SFTP_GetAttributes(ssh->fs,
|
||||||
from, &fileAtr, 1, ssh->ctx->heap)
|
from, &fileAtr, 1, ssh->ctx->heap)
|
||||||
== WS_SUCCESS) {
|
== WS_SUCCESS) {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* wolfterm.c
|
/* wolfterm.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* api.c
|
/* api.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* api.h
|
/* api.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* sftp.c
|
/* sftp.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* sftp.h
|
/* sftp.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* testsuite.c
|
/* testsuite.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* testsuite.h
|
/* testsuite.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* unit.c
|
/* unit.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* unit.h
|
/* unit.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* agent.h
|
/* agent.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* certman.h
|
/* certman.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* certs_test.h
|
/* certs_test.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* error.h
|
/* error.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* internal.h
|
/* internal.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* keygen.h
|
/* keygen.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* log.h
|
/* log.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* misc.h
|
/* misc.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* port.h
|
/* port.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* settings.h
|
/* settings.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* ssh.h
|
/* ssh.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* test.h
|
/* test.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* version.h.in
|
/* version.h.in
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
@ -35,8 +35,8 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define LIBWOLFSSH_VERSION_STRING "1.4.16"
|
#define LIBWOLFSSH_VERSION_STRING "1.4.17"
|
||||||
#define LIBWOLFSSH_VERSION_HEX 0x01004016
|
#define LIBWOLFSSH_VERSION_HEX 0x01004017
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* version.h.in
|
/* version.h.in
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* visibility.h
|
/* visibility.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* wolfscp.h
|
/* wolfscp.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* wolfsftp.h
|
/* wolfsftp.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* tests.c
|
/* tests.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* user_settings.h
|
/* user_settings.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* wolfssl_user_settings.h
|
/* wolfssl_user_settings.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2024 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue