diff options
-rw-r--r-- | src/openssl.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/openssl.c b/src/openssl.c index d7b572e..d4f75aa 100644 --- a/src/openssl.c +++ b/src/openssl.c | |||
@@ -7263,6 +7263,20 @@ static int sx_setStore(lua_State *L) { | |||
7263 | } /* sx_setStore() */ | 7263 | } /* sx_setStore() */ |
7264 | 7264 | ||
7265 | 7265 | ||
7266 | static int sx_getStore(lua_State *L) { | ||
7267 | SSL_CTX *ctx = checksimple(L, 1, SSL_CTX_CLASS); | ||
7268 | X509_STORE *store; | ||
7269 | |||
7270 | if((store = SSL_CTX_get_cert_store(ctx))) { | ||
7271 | xs_push(L, store); | ||
7272 | } else { | ||
7273 | lua_pushnil(L); | ||
7274 | } | ||
7275 | |||
7276 | return 1; | ||
7277 | } /* sx_getStore() */ | ||
7278 | |||
7279 | |||
7266 | static int sx_setVerify(lua_State *L) { | 7280 | static int sx_setVerify(lua_State *L) { |
7267 | SSL_CTX *ctx = checksimple(L, 1, SSL_CTX_CLASS); | 7281 | SSL_CTX *ctx = checksimple(L, 1, SSL_CTX_CLASS); |
7268 | int mode = luaL_optint(L, 2, -1); | 7282 | int mode = luaL_optint(L, 2, -1); |
@@ -7529,6 +7543,7 @@ static const auxL_Reg sx_methods[] = { | |||
7529 | { "getOptions", &sx_getOptions }, | 7543 | { "getOptions", &sx_getOptions }, |
7530 | { "clearOptions", &sx_clearOptions }, | 7544 | { "clearOptions", &sx_clearOptions }, |
7531 | { "setStore", &sx_setStore }, | 7545 | { "setStore", &sx_setStore }, |
7546 | { "getStore", &sx_getStore }, | ||
7532 | { "setVerify", &sx_setVerify }, | 7547 | { "setVerify", &sx_setVerify }, |
7533 | { "getVerify", &sx_getVerify }, | 7548 | { "getVerify", &sx_getVerify }, |
7534 | { "setCertificate", &sx_setCertificate }, | 7549 | { "setCertificate", &sx_setCertificate }, |