Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Up/openssl #281

Merged
merged 2 commits into from
Sep 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deps/lua-openssl
Submodule lua-openssl updated 90 files
+17 −2 .github/asan.supp
+119 −0 .github/lua-openssl.supp
+5 −5 .github/shell/build.sh
+3 −3 .github/shell/make_rockspec.sh
+2 −4 .github/shell/setup_lua.sh
+10 −3 .github/shell/setup_ssl.sh
+110 −0 .github/workflows/check.yml
+20 −95 .github/workflows/ci.yml
+79 −0 .github/workflows/codeql.yml
+45 −0 .github/workflows/libressl.yml
+0 −1 .gitignore
+3 −1 CMakeLists.txt
+23 −85 LICENSE
+72 −11 Makefile
+59 −46 README.md
+1 −1 cmake/Modules/FindLuaJIT.cmake
+1 −1 deps/auxiliar
+1 −1 deps/lua-compat
+12 −3 openssl-scm-0.rockspec
+295 −300 src/asn1.c
+46 −47 src/bio.c
+23 −18 src/cipher.c
+104 −95 src/cms.c
+221 −162 src/compat.c
+1 −1 src/config.ld
+62 −49 src/crl.c
+175 −134 src/csr.c
+2 −0 src/dh.c
+171 −112 src/digest.c
+2 −0 src/dsa.c
+27 −18 src/ec.c
+9 −265 src/hmac.c
+556 −0 src/kdf.c
+8 −3 src/lbn.c
+415 −0 src/mac.c
+24 −12 src/misc.c
+570 −269 src/ocsp.c
+145 −161 src/openssl.c
+18 −2 src/openssl.h
+7 −6 src/ots.c
+362 −0 src/param.c
+14 −12 src/pkcs12.c
+75 −72 src/pkcs7.c
+702 −426 src/pkey.c
+34 −13 src/private.h
+79 −32 src/rsa.c
+4 −4 src/sk.h
+267 −26 src/ssl.c
+0 −517 src/stdatomic.h
+29 −27 src/th-lock.c
+132 −157 src/x509.c
+1 −2 src/xalgor.c
+19 −32 src/xattrs.c
+42 −51 src/xexts.c
+108 −65 src/xname.c
+2 −1 src/xstore.c
+2 −2 test/0.engine.lua
+1 −1 test/0.tcp_c.lua
+26 −5 test/1.asn1.lua
+4 −2 test/1.x509_extension.lua
+21 −8 test/1.x509_name.lua
+46 −4 test/2.digest.lua
+96 −0 test/2.kdf.lua
+34 −0 test/2.mac.lua
+15 −7 test/3.cipher.lua
+22 −2 test/4.pkey.lua
+197 −0 test/4.pkey_ctx.lua
+25 −1 test/5.ts.lua
+34 −13 test/5.x509.lua
+16 −2 test/5.x509_crl.lua
+55 −21 test/5.x509_req.lua
+17 −5 test/6.cms.lua
+1 −1 test/6.pkcs7.lua
+1 −1 test/8.bio_c.lua
+1 −1 test/8.bio_dtls_c.lua
+1 −1 test/8.bio_dtls_s.lua
+1 −1 test/8.bio_s.lua
+13 −2 test/8.ssl.lua
+7 −1 test/8.ssl_c.lua
+6 −0 test/8.ssl_options.lua
+7 −2 test/8.ssl_s.lua
+3 −3 test/9.issue.lua
+44 −35 test/9.ocsp.lua
+2 −3 test/dh.lua
+14 −0 test/ec.lua
+14 −2 test/helper.lua
+1 −1 test/luv/ssl.lua
+34 −5 test/rsa.lua
+18 −5 test/sm2.lua
+12 −0 test/test.lua
4 changes: 2 additions & 2 deletions deps/openssl.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ else (WithSharedOpenSSL)

ExternalProject_Add(openssl
PREFIX openssl
URL https://www.openssl.org/source/openssl-1.1.1m.tar.gz
URL_HASH SHA256=f89199be8b23ca45fc7cb9f1d8d3ee67312318286ad030f5316aca6462db6c96
URL https://www.openssl.org/source/openssl-1.1.1w.tar.gz
URL_HASH SHA256=cf3098950cb4d853ad95c0841f1f9c6d3dc102dccfcacd521d93925208b76ac8
LOG_BUILD ON
BUILD_IN_SOURCE YES
BUILD_COMMAND ${OPENSSL_BUILD_COMMAND}
Expand Down
Loading