Skip to content

Releases: wahern/luaossl

rel-20170901

01 Sep 04:30
rel-20170901
d06f504
Compare
Choose a tag to compare
  • New openssl.ocsp.basic and openssl.ocsp.response modules
  • Add x509:getOCSP()
  • Add x509:getSignatureName() (#79)
  • Add crl:verify(publickey)
  • Add pkcs12.parse(bag[, passphrase])
  • Add context:setStore(store) and context:getStore()
  • Add context:setParam(params) and context:getParam()
  • Add context:setCurvesList(string [, ...])
  • Add context:setAlpnSelect(cb)
  • Add context:setTLSextStatusType(type) and context:getTLSextStatusType()
  • Add ssl:getVerifyResult() (#75)
  • Add ssl:setContext(context) (#84)
  • Add ssl:setVerify([mode][, depth]) and ssl:getVerify() (#84)
  • Add ssl:setCertificate(crt), ssl:setPrivateKey(key), ssl:setCurvesList(string [, ...]) (#84)
  • Add ssl:setTLSextStatusType(type) and ssl:getTLSextStatusType()
  • Add ssl:setTLSextStatusOCSPResp(or) and ssl:getTLSextStatusOCSPResp()
  • Use lua-compat-5.3 (fixes LuaJIT header file compatibility) (#94)
  • Add generator field to replace exp when generating a DH key
  • Move away from interfaces deprecated in OpenSSL 1.1.0

rel-20161214

15 Dec 04:34
Compare
Choose a tag to compare
  • Refactor of bignum operations, fixes bn:sqr()

rel-20161209

15 Dec 04:33
Compare
Choose a tag to compare
  • Add ssl:getVerifyResult()

rel-20161208

09 Dec 02:36
Compare
Choose a tag to compare

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 CRL
  • openssl.ssl.context:getStore() new function that returns a reference to a context's certificate store
  • openssl.pkey:encrypt() and openssl.pkey:decrypt()
  • openssl.ssl.new() to construct an SSL* given a SSL_CTX*
  • Bindings for X509_VERIFY_PARAM*

rel-20151221

21 Dec 10:54
Compare
Choose a tag to compare

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

22 Sep 04:18
Compare
Choose a tag to compare

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.