1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00
Files
nmap/nse_openssl.h
2024-03-11 15:51:49 +00:00

14 lines
238 B
C

#ifndef OPENSSLLIB
#define OPENSSLLIB
#define OPENSSLLIBNAME "openssl"
LUALIB_API int luaopen_openssl(lua_State *L);
#if HAVE_OPENSSL
#include <openssl/bn.h>
int nse_pushbn( lua_State *L, BIGNUM *num, bool should_free);
#endif
#endif