diff options
author | 2016-11-07 23:04:57 +1100 | |
---|---|---|
committer | 2016-11-07 23:04:57 +1100 | |
commit | 938ffdf8c30cb88e4ece27031a2c18cedf9da722 (patch) | |
tree | a44f0a7e16a5ff13fe66e131d2c0366d203cbe8e /src | |
parent | cb727f97f2e00512c70631210de2d8b951e81587 (diff) | |
download | luaossl-938ffdf8c30cb88e4ece27031a2c18cedf9da722.tar.gz luaossl-938ffdf8c30cb88e4ece27031a2c18cedf9da722.tar.bz2 luaossl-938ffdf8c30cb88e4ece27031a2c18cedf9da722.zip |
openssl_x509_store: add :addDefault() method to add OS default certificates
Diffstat (limited to 'src')
-rw-r--r-- | src/openssl.c | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/src/openssl.c b/src/openssl.c index 4564061..7c3f32f 100644 --- a/src/openssl.c +++ b/src/openssl.c @@ -6789,6 +6789,18 @@ static int xs_add(lua_State *L) { } /* xs_add() */ +static int xs_addDefaults(lua_State *L) { + X509_STORE *store = checksimple(L, 1, X509_STORE_CLASS); + + if (!X509_STORE_set_default_paths(store)) + return auxL_error(L, auxL_EOPENSSL, "x509.store:addDefaults"); + + lua_pushvalue(L, 1); + + return 1; +} /* xs_addDefaults() */ + + static int xs_verify(lua_State *L) { X509_STORE *store = checksimple(L, 1, X509_STORE_CLASS); X509 *crt = checksimple(L, 2, X509_CERT_CLASS); @@ -6871,9 +6883,10 @@ static int xs__gc(lua_State *L) { static const auxL_Reg xs_methods[] = { - { "add", &xs_add }, - { "verify", &xs_verify }, - { NULL, NULL }, + { "add", &xs_add }, + { "addDefaults", &xs_addDefaults }, + { "verify", &xs_verify }, + { NULL, NULL }, }; static const auxL_Reg xs_metatable[] = { |