summaryrefslogtreecommitdiffstats
path: root/nse_openssl.h
blob: 09956622d2c8b355ef18e7aaf1ed1ccdc03dc6bc (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef OPENSSLLIB
#define OPENSSLLIB

#define OPENSSLLIBNAME "openssl"

LUALIB_API int luaopen_openssl(lua_State *L);

#include <openssl/bn.h>
int nse_pushbn( lua_State *L, BIGNUM *num, bool should_free);
#endif