diff --git a/CHANGELOG b/CHANGELOG index 60496f3..b94f4ae 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,11 @@ +-------------------------------------------------------------------------------- +LuaSec 1.2.0 +--------------- +This version includes: + +* Add key material export method +* Backguard compat for openssl on providers, like LTS linuxes + -------------------------------------------------------------------------------- LuaSec 1.1.0 --------------- diff --git a/INSTALL b/INSTALL index f45fc8e..7dfbe52 100644 --- a/INSTALL +++ b/INSTALL @@ -1,4 +1,4 @@ -LuaSec 1.1.0 +LuaSec 1.2.0 ------------ * OpenSSL options: diff --git a/LICENSE b/LICENSE index 543bb3d..96c5ce6 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -LuaSec 1.1.0 license +LuaSec 1.2.0 license Copyright (C) 2006-2022 Bruno Silvestre, UFG Permission is hereby granted, free of charge, to any person obtaining diff --git a/README.md b/README.md index b4f78cd..e8da71a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -LuaSec 1.1.0 +LuaSec 1.2.0 =============== LuaSec depends on OpenSSL, and integrates with LuaSocket to make it easy to add secure connections to any Lua applications or scripts. diff --git a/src/compat.h b/src/compat.h index 110a030..cb3ac8e 100644 --- a/src/compat.h +++ b/src/compat.h @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------------- - * LuaSec 1.1.0 + * LuaSec 1.2.0 * * Copyright (C) 2006-2022 Bruno Silvestre * diff --git a/src/config.c b/src/config.c index c711838..ef1c04f 100644 --- a/src/config.c +++ b/src/config.c @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------------- - * LuaSec 1.1.0 + * LuaSec 1.2.0 * * Copyright (C) 2006-2022 Bruno Silvestre. * diff --git a/src/context.c b/src/context.c index 388154b..0bb4826 100644 --- a/src/context.c +++ b/src/context.c @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------------- - * LuaSec 1.1.0 + * LuaSec 1.2.0 * * Copyright (C) 2014-2022 Kim Alvefur, Paul Aurich, Tobias Markmann, * Matthew Wild. diff --git a/src/context.h b/src/context.h index 5e7274a..a2dd7db 100644 --- a/src/context.h +++ b/src/context.h @@ -2,7 +2,7 @@ #define LSEC_CONTEXT_H /*-------------------------------------------------------------------------- - * LuaSec 1.1.0 + * LuaSec 1.2.0 * * Copyright (C) 2006-2022 Bruno Silvestre * diff --git a/src/ec.h b/src/ec.h index 8a6c9e4..7bf700d 100644 --- a/src/ec.h +++ b/src/ec.h @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------------- - * LuaSec 1.1.0 + * LuaSec 1.2.0 * * Copyright (C) 2006-2022 Bruno Silvestre * diff --git a/src/https.lua b/src/https.lua index 8e30da9..1d7ec7b 100644 --- a/src/https.lua +++ b/src/https.lua @@ -1,5 +1,5 @@ ---------------------------------------------------------------------------- --- LuaSec 1.1.0 +-- LuaSec 1.2.0 -- Copyright (C) 2009-2022 PUC-Rio -- -- Author: Pablo Musa @@ -18,8 +18,8 @@ local try = socket.try -- Module -- local _M = { - _VERSION = "1.1.0", - _COPYRIGHT = "LuaSec 1.1.0 - Copyright (C) 2009-2022 PUC-Rio", + _VERSION = "1.2.0", + _COPYRIGHT = "LuaSec 1.2.0 - Copyright (C) 2009-2022 PUC-Rio", PORT = 443, TIMEOUT = 60 } diff --git a/src/options.c b/src/options.c index bc05e54..2037c2e 100644 --- a/src/options.c +++ b/src/options.c @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------------- - * LuaSec 1.1.0 + * LuaSec 1.2.0 * * Copyright (C) 2006-2022 Bruno Silvestre * diff --git a/src/options.h b/src/options.h index 875b5ea..7f4ce0a 100644 --- a/src/options.h +++ b/src/options.h @@ -2,7 +2,7 @@ #define LSEC_OPTIONS_H /*-------------------------------------------------------------------------- - * LuaSec 1.1.0 + * LuaSec 1.2.0 * * Copyright (C) 2006-2022 Bruno Silvestre * diff --git a/src/options.lua b/src/options.lua index d14db77..8899ed2 100644 --- a/src/options.lua +++ b/src/options.lua @@ -18,7 +18,7 @@ end local function generate(options, version) print([[ /*-------------------------------------------------------------------------- - * LuaSec 1.1.0 + * LuaSec 1.2.0 * * Copyright (C) 2006-2022 Bruno Silvestre * diff --git a/src/ssl.c b/src/ssl.c index 12aba06..c546a87 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------------- - * LuaSec 1.1.0 + * LuaSec 1.2.0 * * Copyright (C) 2014-2022 Kim Alvefur, Paul Aurich, Tobias Markmann, * Matthew Wild. @@ -861,7 +861,7 @@ static int meth_getalpn(lua_State *L) static int meth_copyright(lua_State *L) { - lua_pushstring(L, "LuaSec 1.1.0 - Copyright (C) 2006-2022 Bruno Silvestre, UFG" + lua_pushstring(L, "LuaSec 1.2.0 - Copyright (C) 2006-2022 Bruno Silvestre, UFG" #if defined(WITH_LUASOCKET) "\nLuaSocket 3.0-RC1 - Copyright (C) 2004-2013 Diego Nehab" #endif diff --git a/src/ssl.h b/src/ssl.h index 3dd0b27..69b010f 100644 --- a/src/ssl.h +++ b/src/ssl.h @@ -2,7 +2,7 @@ #define LSEC_SSL_H /*-------------------------------------------------------------------------- - * LuaSec 1.1.0 + * LuaSec 1.2.0 * * Copyright (C) 2006-2022 Bruno Silvestre * diff --git a/src/ssl.lua b/src/ssl.lua index 083d5dc..f49b172 100644 --- a/src/ssl.lua +++ b/src/ssl.lua @@ -1,5 +1,5 @@ ------------------------------------------------------------------------------ --- LuaSec 1.1.0 +-- LuaSec 1.2.0 -- -- Copyright (C) 2006-2022 Bruno Silvestre -- @@ -275,7 +275,7 @@ core.setmethod("info", info) -- local _M = { - _VERSION = "1.1.0", + _VERSION = "1.2.0", _COPYRIGHT = core.copyright(), config = config, loadcertificate = x509.load, diff --git a/src/x509.c b/src/x509.c index f82c5a0..9bb5e57 100644 --- a/src/x509.c +++ b/src/x509.c @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------------- - * LuaSec 1.1.0 + * LuaSec 1.2.0 * * Copyright (C) 2014-2022 Kim Alvefur, Paul Aurich, Tobias Markmann * Matthew Wild, Bruno Silvestre. diff --git a/src/x509.h b/src/x509.h index 7a2c3c6..f47b87e 100644 --- a/src/x509.h +++ b/src/x509.h @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------------- - * LuaSec 1.1.0 + * LuaSec 1.2.0 * * Copyright (C) 2014-2022 Kim Alvefur, Paul Aurich, Tobias Markmann * Matthew Wild, Bruno Silvestre.