mirror of
https://github.com/brunoos/luasec.git
synced 2024-12-28 05:18:21 +01:00
Export configuration (protocols, options, curves, algorithms, capabilities)
This commit is contained in:
parent
fc757e1fd0
commit
0b99832ec7
@ -5,6 +5,7 @@ OBJS= \
|
|||||||
x509.o \
|
x509.o \
|
||||||
context.o \
|
context.o \
|
||||||
ssl.o \
|
ssl.o \
|
||||||
|
config.o \
|
||||||
ec.o
|
ec.o
|
||||||
|
|
||||||
LIBS=-lssl -lcrypto -lluasocket
|
LIBS=-lssl -lcrypto -lluasocket
|
||||||
@ -56,7 +57,8 @@ clean:
|
|||||||
cd luasocket && $(MAKE) clean
|
cd luasocket && $(MAKE) clean
|
||||||
rm -f $(OBJS) $(CMOD)
|
rm -f $(OBJS) $(CMOD)
|
||||||
|
|
||||||
|
ec.o: ec.c ec.h
|
||||||
x509.o: x509.c x509.h compat.h
|
x509.o: x509.c x509.h compat.h
|
||||||
context.o: context.c context.h ec.h compat.h
|
context.o: context.c context.h ec.h compat.h
|
||||||
ssl.o: ssl.c ssl.h context.h x509.h compat.h
|
ssl.o: ssl.c ssl.h context.h x509.h compat.h
|
||||||
ec.o: ec.c ec.h
|
config.o: config.c ec.h options.h compat.h
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
#include "context.h"
|
#include "context.h"
|
||||||
#include "options.h"
|
#include "options.h"
|
||||||
|
|
||||||
#ifndef OPENSSL_NO_ECDH
|
#ifndef OPENSSL_NO_EC
|
||||||
#include <openssl/ec.h>
|
#include <openssl/ec.h>
|
||||||
#include "ec.h"
|
#include "ec.h"
|
||||||
#endif
|
#endif
|
||||||
@ -549,11 +549,11 @@ static int set_dhparam(lua_State *L)
|
|||||||
/**
|
/**
|
||||||
* Set elliptic curve.
|
* Set elliptic curve.
|
||||||
*/
|
*/
|
||||||
#ifdef OPENSSL_NO_ECDH
|
#ifdef OPENSSL_NO_EC
|
||||||
static int set_curve(lua_State *L)
|
static int set_curve(lua_State *L)
|
||||||
{
|
{
|
||||||
lua_pushboolean(L, 0);
|
lua_pushboolean(L, 0);
|
||||||
lua_pushstring(L, "OpenSSL does not support ECDH");
|
lua_pushstring(L, "OpenSSL does not support EC");
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
22
src/ec.c
22
src/ec.c
@ -47,6 +47,23 @@ void lsec_load_curves(lua_State *L)
|
|||||||
lua_rawset(L, LUA_REGISTRYINDEX);
|
lua_rawset(L, LUA_REGISTRYINDEX);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void lsec_get_curves(lua_State *L)
|
||||||
|
{
|
||||||
|
lua_newtable(L);
|
||||||
|
|
||||||
|
lua_pushstring(L, "SSL:EC:CURVES");
|
||||||
|
lua_rawget(L, LUA_REGISTRYINDEX);
|
||||||
|
|
||||||
|
lua_pushnil(L);
|
||||||
|
while (lua_next(L, -2) != 0) {
|
||||||
|
lua_pop(L, 1);
|
||||||
|
lua_pushvalue(L, -1);
|
||||||
|
lua_pushboolean(L, 1);
|
||||||
|
lua_rawset(L, -5);
|
||||||
|
}
|
||||||
|
lua_pop(L, 1);
|
||||||
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
void lsec_load_curves(lua_State *L)
|
void lsec_load_curves(lua_State *L)
|
||||||
@ -54,4 +71,9 @@ void lsec_load_curves(lua_State *L)
|
|||||||
// do nothing
|
// do nothing
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void lsec_get_curves(lua_State *L)
|
||||||
|
{
|
||||||
|
lua_newtable(L);
|
||||||
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user