mirror of
https://github.com/nmap/nmap.git
synced 2025-12-06 04:31:29 +00:00
77 lines
1.2 KiB
C
77 lines
1.2 KiB
C
/* Copyright (C) Viktor Szakats
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#define LIBSSH2_MD5_PEM LIBSSH2_MD5
|
|
|
|
#ifdef LIBSSH2_NO_MD5
|
|
#undef LIBSSH2_MD5
|
|
#define LIBSSH2_MD5 0
|
|
#endif
|
|
|
|
#ifdef LIBSSH2_NO_MD5_PEM
|
|
#undef LIBSSH2_MD5_PEM
|
|
#define LIBSSH2_MD5_PEM 0
|
|
#endif
|
|
|
|
#ifdef LIBSSH2_NO_HMAC_RIPEMD
|
|
#undef LIBSSH2_HMAC_RIPEMD
|
|
#define LIBSSH2_HMAC_RIPEMD 0
|
|
#endif
|
|
|
|
#if !defined(LIBSSH2_DSA_ENABLE)
|
|
#undef LIBSSH2_DSA
|
|
#define LIBSSH2_DSA 0
|
|
#endif
|
|
|
|
#ifdef LIBSSH2_NO_RSA
|
|
#undef LIBSSH2_RSA
|
|
#define LIBSSH2_RSA 0
|
|
#endif
|
|
|
|
#ifdef LIBSSH2_NO_RSA_SHA1
|
|
#undef LIBSSH2_RSA_SHA1
|
|
#define LIBSSH2_RSA_SHA1 0
|
|
#endif
|
|
|
|
#ifdef LIBSSH2_NO_ECDSA
|
|
#undef LIBSSH2_ECDSA
|
|
#define LIBSSH2_ECDSA 0
|
|
#endif
|
|
|
|
#ifdef LIBSSH2_NO_ED25519
|
|
#undef LIBSSH2_ED25519
|
|
#define LIBSSH2_ED25519 0
|
|
#endif
|
|
|
|
#ifdef LIBSSH2_NO_AES_CTR
|
|
#undef LIBSSH2_AES_CTR
|
|
#define LIBSSH2_AES_CTR 0
|
|
#endif
|
|
|
|
#ifdef LIBSSH2_NO_AES_CBC
|
|
#undef LIBSSH2_AES_CBC
|
|
#define LIBSSH2_AES_CBC 0
|
|
#endif
|
|
|
|
#ifdef LIBSSH2_NO_BLOWFISH
|
|
#undef LIBSSH2_BLOWFISH
|
|
#define LIBSSH2_BLOWFISH 0
|
|
#endif
|
|
|
|
#ifdef LIBSSH2_NO_RC4
|
|
#undef LIBSSH2_RC4
|
|
#define LIBSSH2_RC4 0
|
|
#endif
|
|
|
|
#ifdef LIBSSH2_NO_CAST
|
|
#undef LIBSSH2_CAST
|
|
#define LIBSSH2_CAST 0
|
|
#endif
|
|
|
|
#ifdef LIBSSH2_NO_3DES
|
|
#undef LIBSSH2_3DES
|
|
#define LIBSSH2_3DES 0
|
|
#endif
|