1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-10 17:59:04 +00:00

Avoid building RC4 bindings if RC4 is not available. Fixes #1094

This commit is contained in:
dmiller
2018-01-22 05:34:35 +00:00
parent 9dac864443
commit a67e68b2d4

View File

@@ -15,7 +15,9 @@
#include <openssl/md4.h> #include <openssl/md4.h>
#include <openssl/md5.h> #include <openssl/md5.h>
#include <openssl/rand.h> #include <openssl/rand.h>
#ifndef OPENSSL_NO_RC4
#include <openssl/rc4.h> #include <openssl/rc4.h>
#endif
#include <openssl/ripemd.h> #include <openssl/ripemd.h>
#include <openssl/sha.h> #include <openssl/sha.h>
@@ -530,6 +532,7 @@ static int l_DES_string_to_key(lua_State *L) /** DES_string_to_key( string data
return 1; return 1;
} }
#ifndef OPENSSL_NO_RC4
static int l_rc4_options (lua_State *L) static int l_rc4_options (lua_State *L)
{ {
lua_pushstring(L, RC4_options()); lua_pushstring(L, RC4_options());
@@ -561,6 +564,7 @@ static int l_rc4 (lua_State *L)
return 1; return 1;
} }
#endif
static const struct luaL_Reg bignum_methods[] = { static const struct luaL_Reg bignum_methods[] = {
{ "num_bits", l_bignum_num_bits }, { "num_bits", l_bignum_num_bits },
@@ -610,8 +614,10 @@ static const struct luaL_Reg openssllib[] = {
{ "DES_string_to_key", l_DES_string_to_key }, { "DES_string_to_key", l_DES_string_to_key },
{ "supported_digests", l_supported_digests }, { "supported_digests", l_supported_digests },
{ "supported_ciphers", l_supported_ciphers }, { "supported_ciphers", l_supported_ciphers },
#ifndef OPENSSL_NO_RC4
{ "rc4_options", l_rc4_options }, { "rc4_options", l_rc4_options },
{ "rc4", l_rc4 }, { "rc4", l_rc4 },
#endif
{ NULL, NULL } { NULL, NULL }
}; };