Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2017-08-31 | Fix broken make install rule | daurnimator | 1 | -3/+3 | |
2017-08-31 | openssl >=1.1.0 doesn't need to have locking initialised, nor config ↵ | daurnimator | 1 | -2/+10 | |
manually loaded Part of #96 | |||||
2017-08-31 | In compat_init we only need to anchor if we use CRYPTO_get_ex_new_index | daurnimator | 1 | -1/+1 | |
2017-08-31 | Move away from deprecated X509_CRL_get_* functions when setting values | daurnimator | 1 | -21/+44 | |
Use X509_CRL_set1_* instead which perform a copy (which means we have to allocate and destroy an ASN1_TIME) Part of #96 | |||||
2017-08-31 | Move to key generation *_ex functions. | daurnimator | 1 | -8/+29 | |
The old functions were deprecated in OpenSSL 1.1.0. Part of #96 | |||||
2017-08-31 | Use 'generator' parameter for picking generator for DH keys (rather than ↵ | daurnimator | 3 | -5/+9 | |
'exp'). Change default value to 2. 2 is the default generator for openssl; the number is a mostly arbitrary choice, and smaller values are faster. | |||||
2017-08-31 | Add branch for each key type in pk_new field marshalling | daurnimator | 1 | -14/+32 | |
2017-08-31 | Use X509_CRL_get0_*Update when not modifying ASN1_TIME | daurnimator | 1 | -9/+25 | |
2017-08-31 | Fix most 'expansion-to-defined' warnings | daurnimator | 1 | -12/+29 | |
2017-08-31 | Use single method constructor and disable unwanted protocols via options | daurnimator | 1 | -31/+61 | |
- In OpenSSL 1.1.0 the individual constructors are deprecated - The removal of __typeof__ fixes an issue with MSVC | |||||
2017-08-31 | Fix openssl 0.9.8 compat (missing sk_OPENSSL_STRING_* functions) | daurnimator | 1 | -0/+10 | |
2017-08-30 | Move over to using lua-compat-5.3 | daurnimator | 3 | -182/+4 | |
2017-08-30 | Pull in updated makefile structure from cqueues | daurnimator | 2 | -128/+210 | |
2017-08-29 | config.h.guess: Update to new autoguess | daurnimator | 1 | -1/+31 | |
2017-08-29 | src/GNUmakefile: Remove duplicated rule | daurnimator | 1 | -5/+0 | |
2017-08-29 | src/GNUmakefile: Add missing uninstall rule for ocsp submodule | daurnimator | 1 | -0/+1 | |
2017-08-10 | Remove mutex from dl_anchor | daurnimator | 1 | -6/+1 | |
All call sites already hold a single mutex | |||||
2017-08-10 | Use a single lock across multiple init functions | daurnimator | 1 | -26/+13 | |
2017-05-31 | src/GNUmakefile: Add missing ocsp rule | daurnimator | 1 | -0/+5 | |
2017-05-31 | Fix capitalisation (Hostname vs HostName) | daurnimator | 1 | -7/+7 | |
2017-04-19 | Fix incorrect error prefixes | daurnimator | 1 | -2/+2 | |
2017-04-12 | openssl.ssl: Bind SSL_set1_curves_list as ssl:setCurvesList() | daurnimator | 3 | -2/+46 | |
2017-04-06 | Reintroduce context:setTLSextStatusType() accidently removed in ↵ | daurnimator | 1 | -0/+3 | |
59766e63abfeb30342d413777b507940a739cc97 | |||||
2017-04-04 | Add ssl_pushsafe function to avoid panic on OOM | daurnimator | 1 | -7/+41 | |
2017-04-04 | Bind SSL_CTX_set_tlsext_servername_callback | daurnimator | 2 | -4/+91 | |
Closes #84 | |||||
2017-04-04 | Document ssl:getVerifyResult() | daurnimator | 2 | -0/+4 | |
2017-04-04 | Add methods ssl:setVerify(), ssl:getVerify(), ssl:getCertificate() and ↵ | daurnimator | 3 | -0/+89 | |
ssl:setPrivateKey() Similar to same methods that already exist on ssl.context object | |||||
2017-04-03 | Remove need for LUA_COMPAT_APIINTCASTS | daurnimator | 2 | -24/+16 | |
2017-04-03 | Fix warning about pointer signedness | daurnimator | 1 | -1/+1 | |
2017-04-03 | Fix warning about pointer signedness | daurnimator | 1 | -1/+1 | |
2017-04-03 | Bind SSL_set_SSL_CTX | daurnimator | 3 | -0/+17 | |
For #84 | |||||
2017-04-03 | Document missing context methods | daurnimator | 2 | -0/+23 | |
Closes #66 | |||||
2017-04-03 | Don't leak ctx on error | daurnimator | 1 | -8/+5 | |
Fixes #72 | |||||
2017-04-03 | Bind SSL_get_client_random | daurnimator | 1 | -0/+42 | |
For #86 | |||||
2017-04-03 | Have (empty) openssl.ocsp.response module | daurnimator | 3 | -2/+23 | |
2017-04-03 | Add docs for OCSP functions | daurnimator | 1 | -0/+72 | |
2017-04-03 | Export constants for openssl.ocsp.basic:verify() with via module | daurnimator | 3 | -0/+29 | |
2017-04-03 | Allow unsetting ocsp response | daurnimator | 1 | -4/+8 | |
2017-04-03 | Remove trailing whitespace | daurnimator | 4 | -9/+9 | |
2017-04-03 | Add docs for x509:getSignatureName | daurnimator | 2 | -0/+4 | |
2017-04-03 | Remove extraneous parenthesis | daurnimator | 1 | -1/+1 | |
2017-04-03 | Add compat with openssl < 1.0.2 for X509_get_signature_nid | daurnimator | 1 | -0/+8 | |
2017-04-03 | Remove unused variables introduced in 590d368daeb400515c82b2d99ddcdf14607f9353 | daurnimator | 1 | -4/+0 | |
2017-04-03 | Document table form of extension.new() data argument | daurnimator | 1 | -1/+13 | |
2017-04-03 | Move value='DER' check out of type dispatch in xe_new | daurnimator | 1 | -20/+19 | |
2017-04-03 | Bugfix in xx_getNextUpdate() - return time instead of constant 1. | Pascal Fellerich | 1 | -1/+1 | |
2017-04-03 | New: method crl:verify(publickey) added, documentation updated. | Pascal Fellerich | 2 | -0/+18 | |
2017-04-03 | New: pkcs12.parse() added to read a PKCS12 string, and return (pkey,cert,ca) | Pascal Fellerich | 2 | -0/+60 | |
2017-04-03 | New: pkey.new{} modified to accept 'dhparam', a string representing the ↵ | Pascal Fellerich | 2 | -1/+24 | |
pre-computed DH parameters | |||||
2017-04-03 | openssl.ssl.context.new: Turn on ecdh_auto in OpenSSL 1.0.2 | daurnimator | 1 | -0/+13 | |
It's on by default in 1.1.0, and supported in < 1.0.2. Suggestion taken from ruby openssl implementation: https://github.com/ruby/openssl/blob/a7bbd590c66d40bd662502df9c65474e85b5f03f/ext/openssl/ossl_ssl.c#L135 |