mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
* Core/SSH: libssh2 upgraded to version 1.11.1 * Core/SSH: SFtpStream: Don't try to read file attrs if the file is newly created. * Core/SSH: Error log fix.
19 lines
430 B
C
19 lines
430 B
C
/* Copyright (C) Viktor Szakats
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#define LIBSSH2_CRYPTO_C
|
|
#include "libssh2_priv.h"
|
|
|
|
#if defined(LIBSSH2_OPENSSL) || defined(LIBSSH2_WOLFSSL)
|
|
#include "openssl.c"
|
|
#elif defined(LIBSSH2_LIBGCRYPT)
|
|
#include "libgcrypt.c"
|
|
#elif defined(LIBSSH2_MBEDTLS)
|
|
#include "mbedtls.c"
|
|
#elif defined(LIBSSH2_OS400QC3)
|
|
#include "os400qc3.c"
|
|
#elif defined(LIBSSH2_WINCNG)
|
|
#include "wincng.c"
|
|
#endif
|