Releases: wahern/luaossl
Releases · wahern/luaossl
rel-20170901
- New
openssl.ocsp.basic
andopenssl.ocsp.response
modules - Add
x509:getOCSP()
- Add
x509:getSignatureName()
(#79) - Add
crl:verify(publickey)
- Add
pkcs12.parse(bag[, passphrase])
- Add
context:setStore(store)
andcontext:getStore()
- Add
context:setParam(params)
andcontext:getParam()
- Add
context:setCurvesList(string [, ...])
- Add
context:setAlpnSelect(cb)
- Add
context:setTLSextStatusType(type)
andcontext:getTLSextStatusType()
- Add
ssl:getVerifyResult()
(#75) - Add
ssl:setContext(context)
(#84) - Add
ssl:setVerify([mode][, depth])
andssl:getVerify()
(#84) - Add
ssl:setCertificate(crt)
,ssl:setPrivateKey(key)
,ssl:setCurvesList(string [, ...])
(#84) - Add
ssl:setTLSextStatusType(type)
andssl:getTLSextStatusType()
- Add
ssl:setTLSextStatusOCSPResp(or)
andssl:getTLSextStatusOCSPResp()
- Use lua-compat-5.3 (fixes LuaJIT header file compatibility) (#94)
- Add
generator
field to replaceexp
when generating a DH key - Move away from interfaces deprecated in OpenSSL 1.1.0
rel-20161214
- Refactor of bignum operations, fixes
bn:sqr()
rel-20161209
- Add
ssl:getVerifyResult()
rel-20161208
In this release:
openssl.x509.store:addDefaults()
new function to add the operating system's default ca's to a certificate store.openssl.x509.store:add()
can now take a CRLopenssl.ssl.context:getStore()
new function that returns a reference to a context's certificate storeopenssl.pkey:encrypt()
andopenssl.pkey:decrypt()
openssl.ssl.new()
to construct anSSL*
given aSSL_CTX*
- Bindings for
X509_VERIFY_PARAM*
rel-20151221
liblua-openssl (20151221-0) unstable; urgency=low
- Add :tohex and :todec methods to bignums, and make metamethods accessible directly. (daurnimator)
- Add __idiv metamethod for Lua 5.3. (daurnimator)
- Add :tobin method to bignums. (daurnimator)
- Add :getParameters method to pkeys. (daurnimator)
- Fix build when SSLv3 support is not present.
rel-20150727
liblua-openssl (20150727-0) unstable; urgency=low
- More extension work from Kaarle Ritvanen (kunkku)
- Add DTLS support.
- Fix bug in
ex_newstate
which could cause application data attached
to OpenSSL objects using OpenSSL's external application data API to be
prematurely invalidated as-if the Lua interperter was destroyed.