1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
liblua-openssl (20150504-0) unstable; urgency=low
* Use lightuserdata as registry keys. C function hashes aren't stable
in LuaJIT.
* Add openssl.version as binding for SSLeay_version.
* Fix build on OpenBSD 5.6 libressl.
-- William Ahern <william@25thandClement.com> Mon, 04 May 2015 17:49:08 -0700
liblua-openssl (20150422-0) unstable; urgency=low
* Add support for ALPN server callback, SSL_CTX_set_alpn_select_cb.
* Fix X509_STORE double-free bug on older OpenSSL releases (< 1.0.2)
by implementing and using our own X509_STORE_free routine which properly
checks reference counts. Workaround adapted from Ruby OpenSSL bindings.
* Fix strerror_r usage on glibc.
-- William Ahern <william@25thandClement.com> Wed, 22 Apr 2015 15:39:14 -0700
liblua-openssl (20150304-0) unstable; urgency=low
* Merge ALPN support from quae@daurnimator.com.
-- William Ahern <william@25thandClement.com> Wed, 04 Mar 2015 18:11:13 -0800
liblua-openssl (20150225-0) unstable; urgency=low
* Add DES module to help implement NTLM authentication protocol.
-- William Ahern <william@25thandClement.com> Wed, 25 Feb 2015 12:46:41 -0800
liblua-openssl (20141028-0) unstable; urgency=low
* Add ssl:getVersion and ssl:getClientVersion.
* Fix "TLS" and "SSL" method names for context.new. OpenSSL TLSv1_method()
literally only speaks 1.0, not 1.0 and above. "TLS" now uses
SSLv23_method and disables SSLv2 and SSLv3. "SSL" uses SSLv23_method and
disables SSLv2.
-- William Ahern <william@25thandClement.com> Tue, 28 Oct 2014 21:03:23 -0700
liblua-openssl (20140923-0) unstable; urgency=low
* Add more CRL support from Kaarle Ritvanen.
* Add prelimiary 5.3 support.
* Add SSL_CTX and SSL option support.
* Add ephemeral key support.
* Add Server Name Indication (SNI) support.
* Fix issue which prevented loading public and private keys together.
* Add bindings to opensslv.h and opensslconf.h.
-- William Ahern <william@25thandClement.com> Tue, 23 Sep 2014 20:32:32 -0700
liblua-openssl (20140718-0) unstable; urgency=low
* Add CRL spport from Kaarle Ritvanen.
* Add PKCS1 support from Kaarle Ritvanen.
* Add AIX platform support.
* Add rand.stir.
-- William Ahern <william@25thandClement.com> Fri, 18 Jul 2014 22:44:31 -0700
liblua-openssl (20140328-0) unstable; urgency=low
* Add DER input/output formats.
* Add GEN_DIRNAME alternative names.
* Change the return value of several methods from boolean true
to the method object, to allow easy call chaining in Lua.
* Fix rand.uniform to use lua_Unsigned when it's a 64-bit type (Lua 5.3).
* Rename openssl.pubkey to openssl.pkey.
-- William Ahern <william@25thandClement.com> Fri, 28 Mar 2014 22:44:31 -0700
liblua-openssl (20140322-0) unstable; urgency=low
* Add Lua 5.3 support.
* Add user guide.
-- William Ahern <william@25thandClement.com> Sat, 22 Mar 2014 20:23:56 -0800
liblua-openssl (20140131-0) unstable; urgency=low
* Add multi-threaded re-entrancy protection, including explicitly
synchronizing OpenSSL initialization because OpenSSL doesn't appear to
use its own locking callbacks from initialization routines.
-- William Ahern <william@25thandClement.com> Fri, 31 Jan 2014 14:27:30 -0800
liblua-openssl (20131209-1) unstable; urgency=low
* Initial release after splitting from cqueues project.
-- William Ahern <william@25thandClement.com> Sun, 09 Dec 2013 21:17:33 -0800
|