mirror of https://github.com/wolfSSL/wolfssh.git
commit
326a4bf004
27
ChangeLog.md
27
ChangeLog.md
|
@ -1,3 +1,30 @@
|
||||||
|
# wolfSSH v1.4.13 (Apr 3, 2023)
|
||||||
|
|
||||||
|
## New Feature Additions and Improvements
|
||||||
|
|
||||||
|
- Improvement to forking the wolfSSHd daemon.
|
||||||
|
- Added an STM32Cube Expansion pack. See the file _ide/STM32CUBE/README.md_
|
||||||
|
for more information. (https://www.wolfssl.com/files/ide/I-CUBE-wolfSSH.pack)
|
||||||
|
- Improved test coverage for wolfSSHd.
|
||||||
|
- X.509 style private key support.
|
||||||
|
|
||||||
|
## Fixes
|
||||||
|
|
||||||
|
- Fixed shadow password checking in wolfSSHd.
|
||||||
|
- Building cleanups: warnings, types, 32-bit.
|
||||||
|
- SFTP fixes for large files.
|
||||||
|
- Testing and fixes with SFTP and LwIP.
|
||||||
|
|
||||||
|
## Vulnerabilities
|
||||||
|
|
||||||
|
- wolfSSHd would allow users without passwords to log in with any password.
|
||||||
|
This is fixed as of this version. The return value of crypt() was not
|
||||||
|
correctly checked. This issue was introduced in v1.4.11 and only affects
|
||||||
|
wolfSSHd when using the default authentication callback provided with
|
||||||
|
wolfSSHd. Anyone using wolfSSHd should upgrade to v1.4.13.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
# wolfSSH v1.4.12 (Dec 28, 2022)
|
# wolfSSH v1.4.12 (Dec 28, 2022)
|
||||||
|
|
||||||
## New Feature Additions and Improvements
|
## New Feature Additions and Improvements
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* auth.c
|
/* auth.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
# wolfssh
|
# wolfssh
|
||||||
# Copyright (C) 2014-2022 wolfSSL Inc.
|
# Copyright (C) 2014-2023 wolfSSL Inc.
|
||||||
# All right reserved.
|
# All right reserved.
|
||||||
|
|
||||||
AC_COPYRIGHT([Copyright (C) 2014-2022 wolfSSL Inc.])
|
AC_COPYRIGHT([Copyright (C) 2014-2023 wolfSSL Inc.])
|
||||||
AC_INIT([wolfssh],[1.4.12],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
|
AC_INIT([wolfssh],[1.4.13],[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,7 +18,7 @@ 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=14:0:6
|
WOLFSSH_LIBRARY_VERSION=15:0:7
|
||||||
# | | |
|
# | | |
|
||||||
# +------+ | +---+
|
# +------+ | +---+
|
||||||
# | | |
|
# | | |
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* client.c
|
/* client.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* server.c
|
/* server.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* server.h
|
/* server.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* dummy_filesystem.h
|
/* dummy_filesystem.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,22 +1,21 @@
|
||||||
/* wolfssh_test.c
|
/* wolfssh_test.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2006-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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 "wolfssh_test.h"
|
#include "wolfssh_test.h"
|
||||||
|
|
|
@ -1,22 +1,21 @@
|
||||||
/* wolfssh_test.h
|
/* wolfssh_test.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2006-2023 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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 WOLFSSH_TEST_H_
|
#ifndef WOLFSSH_TEST_H_
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* agent.c
|
/* agent.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* wolfterm.c
|
/* wolfterm.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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.12"
|
#define LIBWOLFSSH_VERSION_STRING "1.4.13"
|
||||||
#define LIBWOLFSSH_VERSION_HEX 0x01004012
|
#define LIBWOLFSSH_VERSION_HEX 0x01004013
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* version.h.in
|
/* version.h.in
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 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-2022 wolfSSL Inc.
|
* Copyright (C) 2014-2023 wolfSSL Inc.
|
||||||
*
|
*
|
||||||
* This file is part of wolfSSH.
|
* This file is part of wolfSSH.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue