mirror of
https://github.com/brunoos/luasec.git
synced 2025-02-13 15:32:48 +01:00
Changelog
This commit is contained in:
parent
3b5f4b0dc1
commit
f09ce9fb44
31
CHANGELOG
31
CHANGELOG
@ -1,7 +1,36 @@
|
|||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
LuaSec 0.6a
|
LuaSec 0.6a
|
||||||
------------
|
------------
|
||||||
TBD
|
LuaSec depends on OpenSSL, and integrates with LuaSocket to make it
|
||||||
|
easy to add secure connections to any Lua applications or scripts.
|
||||||
|
|
||||||
|
Documentation: https://github.com/brunoos/luasec/wiki
|
||||||
|
|
||||||
|
This version includes:
|
||||||
|
|
||||||
|
* Lua 5.2 and 5.3 compatibility
|
||||||
|
|
||||||
|
* Context module:
|
||||||
|
- Add ctx:checkkey()
|
||||||
|
|
||||||
|
* SSL module:
|
||||||
|
- Add conn:sni() and conn:getsniname()
|
||||||
|
|
||||||
|
* Context options:
|
||||||
|
- Add "any" protocol ("sslv23" is deprecated)
|
||||||
|
|
||||||
|
* HTTPS module:
|
||||||
|
- Using "any" protocol without SSLv2/SSLv3, by default
|
||||||
|
|
||||||
|
* X509 module:
|
||||||
|
- Human readable IP address
|
||||||
|
- Add cert:issued()
|
||||||
|
- Add cert:pubkey()
|
||||||
|
|
||||||
|
* Some bug fixes
|
||||||
|
|
||||||
|
|
||||||
|
=> Thanks to everyone who collaborate with LuaSec <=
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
LuaSec 0.5
|
LuaSec 0.5
|
||||||
|
44
README.md
44
README.md
@ -1,38 +1,32 @@
|
|||||||
LuaSec 0.6a
|
LuaSec 0.6a
|
||||||
==========
|
==========
|
||||||
Alpha version to address Lua 5.2 and 5.3 compatibility.
|
|
||||||
|
|
||||||
LuaSec 0.5
|
|
||||||
==========
|
|
||||||
|
|
||||||
LuaSec depends on OpenSSL, and integrates with LuaSocket to make it
|
LuaSec depends on OpenSSL, and integrates with LuaSocket to make it
|
||||||
easy to add secure connections to any Lua applications or scripts.
|
easy to add secure connections to any Lua applications or scripts.
|
||||||
|
|
||||||
|
Documentation: https://github.com/brunoos/luasec/wiki
|
||||||
|
|
||||||
This version includes:
|
This version includes:
|
||||||
|
|
||||||
* A new certificate (X509) API, which supports:
|
* Lua 5.2 and 5.3 compatibility
|
||||||
- Reading the subject (identity) and issuer of the certificate.
|
|
||||||
- Reading various X509 extensions, including email and dnsName.
|
|
||||||
- Converting certificates to and from the standard ASCII PEM
|
|
||||||
format.
|
|
||||||
- Generating the fingerprint/digest of a certificate (using SHA1,
|
|
||||||
SHA256 or SHA512).
|
|
||||||
- Reading the certificate's expiration, serial number, and other
|
|
||||||
info.
|
|
||||||
|
|
||||||
* The ability to get more detailed information from OpenSSL about
|
* Context module:
|
||||||
why a certificate failed verification, for each certificate in the
|
- Add ctx:checkkey()
|
||||||
chain.
|
|
||||||
|
|
||||||
* Flags to force acceptance of invalid certificates, e.g. to allow
|
* SSL module:
|
||||||
the use of self-signed certificates in a Trust On First Use model.
|
- Add conn:sni() and conn:getsniname()
|
||||||
|
|
||||||
* Flags to control checking CRLs for certificate revocation status.
|
* Context options:
|
||||||
|
- Add "any" protocol ("sslv23" is deprecated)
|
||||||
|
|
||||||
* Support for ECDH cipher suites.
|
* HTTPS module:
|
||||||
|
- Using "any" protocol without SSLv2/SSLv3, by default
|
||||||
|
|
||||||
* An API to get the TLS 'finished' messages used for SASL channel
|
* X509 module:
|
||||||
binding (e.g. the SCRAM PLUS mechanisms).
|
- Human readable IP address
|
||||||
|
- Add cert:issued()
|
||||||
|
- Add cert:pubkey()
|
||||||
|
|
||||||
The work in this release was undertaken by Kim Alvefur, Paul Aurich,
|
* Some bug fixes
|
||||||
Tobias Markmann, Bruno Silvestre and Matthew Wild.
|
|
||||||
|
|
||||||
|
=> Thanks to everyone who collaborate with LuaSec <=
|
||||||
|
Loading…
x
Reference in New Issue
Block a user