Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-11-15 | Guard SSLv3_server_method with #ifndef OPENSSL_NO_SSL3 | daurnimator | 1 | -0/+2 | |
Related to https://github.com/wahern/cqueues/issues/113 | |||||
2015-07-27 | update debian changelogrel-20150727 | William Ahern | 1 | -0/+11 | |
2015-07-25 | refactor ex_newstate fix, which left nil on the stack | william | 1 | -6/+11 | |
2015-07-24 | Don't recreate an exdata state singleton object when one already exists, ↵ | William Ahern | 1 | -0/+9 | |
otherwise we wrongly invalidate any data already installed. Because ex_newstate is invoked from every submodule, this can easily happen if code loads one submodule, attaches some data to a new OpenSSL object, then loads some other submodule for the first time. | |||||
2015-06-16 | quick fix to make it easier to build against musl libc | Linux User | 1 | -3/+7 | |
2015-06-04 | add extension:text metho | william | 1 | -1/+44 | |
2015-06-04 | document new modes to x509:getExtension and crl:getExtension, and new ↵ | william | 2 | -4/+12 | |
x509:getExtensionCount and crl:getExtensionCount methods | |||||
2015-06-04 | permit getting extension by index (1-based indexing), and add ↵ | william | 1 | -34/+86 | |
x509:getExtensionCount and crl:getExtensionCount methods | |||||
2015-06-04 | document openssl module constants and openssl.version, which resolves issue #20 | william | 2 | -0/+32 | |
2015-06-04 | update documentation for new extension APIs | william | 2 | -4/+39 | |
2015-06-04 | add extension:getID, extension:getName, extension:getShortName, ↵ | william | 1 | -33/+220 | |
extension:getLongName, extension:getCritical, and crl:getExtension | |||||
2015-06-04 | clarify ownership semantics of new extension features, some consistency ↵ | william | 1 | -16/+35 | |
work, and a little bit of refactoring to help me understand how the new code works | |||||
2015-06-04 | use X509_get0_pubkey_bitstr to get reference to public key ASN.1 bit string ↵ | william | 1 | -1/+1 | |
object | |||||
2015-06-04 | update x509:getPublicKeyDigest to take optional digest type | william | 3 | -5/+13 | |
2015-06-02 | document DTLS protocol identifiers for openssl.ssl.context.new routine | william | 2 | -7/+10 | |
2015-06-02 | add DTLS client and server methods to openssl.ssl.context.new | william | 1 | -27/+84 | |
2015-05-28 | remove some unused warnings | william | 1 | -11/+0 | |
2015-05-18 | initialize extension data in DER format without intermediate hex encoding | Kaarle Ritvanen | 1 | -1/+26 | |
2015-05-18 | get extension data in DER format | Kaarle Ritvanen | 1 | -1/+9 | |
2015-05-18 | get named extension from certificate | Kaarle Ritvanen | 1 | -0/+32 | |
2015-05-18 | CRL extensions | Kaarle Ritvanen | 1 | -0/+13 | |
2015-05-14 | get digest for certificate's public key | Kaarle Ritvanen | 1 | -0/+16 | |
The digest may be used in key identifier extensions. See RFC 5280 §4.2.1.2. | |||||
2015-05-04 | update debian changelogrel-20150504 | william | 1 | -0/+9 | |
2015-04-22 | fix build for OpenBSD 5.6 libressl | William Ahern | 1 | -1/+6 | |
2015-04-22 | forgot NULL terminator on ssleay_version array | william | 1 | -0/+1 | |
2015-04-22 | Fix BN_CTX and BIO caching for LuaJIT | william | 1 | -4/+4 | |
2015-04-22 | Add openssl.version to permit querying runtime OpenSSL version. | william | 1 | -9/+83 | |
Fix external app data in LuaJIT, which doesn't permit us to store state using a function pointer because of function equivalence issues. | |||||
2015-04-22 | update luapath script | william | 1 | -57/+402 | |
2015-04-22 | update changelog in preparation for tagging releaserel-20150422 | william | 1 | -0/+10 | |
2015-04-20 | add missing line continuation to LIST_INSERT_HEAD macro, and fix stale code ↵exdata | william | 1 | -2/+2 | |
comment | |||||
2015-04-17 | finish setAlpnSelect | william | 1 | -18/+56 | |
2015-04-17 | forgot to install our X509_STORE_free replacement | william | 1 | -3/+9 | |
2015-04-17 | unify OpenSSL, DYLD, and system errno error handling, and begin to ↵ | william | 1 | -279/+277 | |
regularize auxiliary routines under the aux prefix | |||||
2015-04-17 | pin the module in memory when installing external app data callbacks, as ↵ | william | 1 | -124/+234 | |
these can be never be uninstalled | |||||
2015-04-16 | don't care about the SSL_CTX class index | william | 1 | -2/+0 | |
2015-04-16 | add fix for issue #17 | william | 1 | -7/+148 | |
2015-04-09 | refactor and fixup some interfaces, and begin to flesh out ALPN selection ↵ | william | 1 | -39/+148 | |
callback |