ultimatepp/uppsrc/Core/SSH/libssh2/crypto.c
İsmail Yılmaz 7769e4a04c
Core/SSH: libssh2 upgraded to version 1.11.1 (#209)
* 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.
2025-01-31 13:14:25 +01:00

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