summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Expand)AuthorAgeFilesLines
...
| * | openssl_x509_store: add :addDefault() method to add OS default certificatesdaurnimator2016-11-071-3/+16
| |/
* | auxS_todigest and auxL_optdigest depend on compat routines63-evp_pkey_get_default_digest_nid-getPublicKeyDigestWilliam Ahern2016-11-231-33/+49
* | negative indices don't make sense for luaL_opt interfaces and don't work prop...William Ahern2016-11-231-2/+0
* | Merge branch 'master' into 63-evp_pkey_get_default_digest_nid-getPublicKeyDigestWilliam Ahern2016-11-231-114/+39
|\|
| * workaround for broken GCC on some newer debian/ubuntu installations with weir...rel-20161101William Ahern2016-11-011-4/+10
| * Merge branch '55-renametobin' of https://github.com/daurnimator/luaossl into ...William Ahern2016-11-011-25/+29
| |\
| | * Keep old deprecated names 'tobin', 'todec', 'tohex'daurnimator2016-04-221-0/+4
| | * Rename tobin, todec, tohex to CamelCase: toDecimal, toDecimal, toHexdaurnimator2016-04-101-25/+25
| * | forgot to remove HAVE_GENERAL_NAME_SET0_VALUEWilliam Ahern2016-11-011-4/+0
| * | Remove unused ecg_new_by_niddaurnimator2016-10-301-15/+0
| * | Remove unused GENERAL_NAME_get0_valuedaurnimator2016-10-301-66/+0
* | | use _MSC_FULL_VER not _MSC_VER_FULL, and use more common feature macro names ...William Ahern2016-11-231-7/+11
* | | auxL_absindex too clever; stay simpleWilliam Ahern2016-11-021-6/+3
* | | forgot to remove old xc_getPublicKeyDigestWilliam Ahern2016-11-011-20/+0
* | | refactor xc_signature to auxL_optdigestWilliam Ahern2016-11-011-29/+116
|/ /
* | fix constantness warning with OpenSSL 1.1 APIWilliam Ahern2016-10-291-1/+7
* | add and use pkey:getDefaultDigestName because the old digest type names used ...William Ahern2016-10-291-9/+28
* | final bits handle EVP_CIPHER_CTX, EVP_MD_CTX, and HMAC_CTX as opaque objectsWilliam Ahern2016-10-291-32/+127
* | use SSL_client_versionWilliam Ahern2016-10-291-2/+22
* | X509_STORE_CTX is opaque, fixup store:verifyWilliam Ahern2016-10-291-45/+80
* | must use i2d_re_X509_REQ_tbs to dirty the X509_REQ cached encodingWilliam Ahern2016-10-291-0/+8
* | use EVP_PKEY_get_default_digest_nid to determine the default signature, and e...William Ahern2016-10-291-11/+41
* | more OpenSSL 1.1 workWilliam Ahern2016-10-291-25/+127
* | lots of OpenSSL 1.1 compatability workWilliam Ahern2016-10-281-58/+339
* | libressl has supported ALPN since 2.1.3William Ahern2016-10-191-1/+1
* | unbreak BSDs by using arc4random_bufWilliam Ahern2016-10-191-2/+2
* | there are no kernel headers installed by default in Alpine Linux (Linux/musl)...William Ahern2016-10-191-31/+25
* | use config.h.guess from autoguess project for system feature testsWilliam Ahern2016-10-191-2/+4
* | Use syscall() to call getrandom()Ondřej Surý2016-08-301-1/+2
* | Add __DragonFly__ and generic BSD detection for ARC4RANDOMOndřej Surý2016-08-301-1/+1
* | Use RAND_seed() instead of RAND_add() where appropriateOndřej Surý2016-08-301-4/+4
* | Reinstate sysctl call for older Linux kernelsOndřej Surý2016-08-301-8/+29
* | Use arc4random()/getrandom() to get random bytes instead of sysctl() interfaceOndřej Surý2016-08-301-31/+32
* | in bignum string conversion, don't pass char or signed char to isdigit or isx...William Ahern2016-08-121-2/+2
* | temporarily address issue #54 by copying solution from lunix and autoguess pr...William Ahern2016-06-251-2/+2
* | upgrade luapath scriptWilliam Ahern2016-06-241-1/+1
* | refactor style to more closely match the style of the existing code, such as ...William Ahern2016-06-241-22/+35
* | refactor and add ashb's regression test for #53William Ahern2016-06-244-2/+26
* | initialize attr to NULL in xr_setExtensionByNid to silence clang, which can't...William Ahern2016-06-231-0/+1
* | Support for getting and setting SAN on a CSRAsh Berlin2016-04-111-0/+81
* | Add terminator to openssl.x509.extension.Ash Berlin2016-04-091-0/+1
|/
* Merge branch 'patch-1' of git://github.com/Zash/luaossl into Zash-patch-1William Ahern2016-02-162-0/+2
|\
| * Add openssl.x509.csr to makefileKim Alvefur2016-02-061-0/+1
| * Expose openssl.x509.csrKim Alvefur2016-02-061-0/+1
* | Merge branch 'bignum-new' of git://github.com/daurnimator/luaossl into daurni...William Ahern2016-02-161-7/+42
|\ \ | |/ |/|
| * bignum: Don't allow empty numbers/strings to passdaurnimator2016-01-041-5/+5
| * bignum: validate hex and decimal strings before feeding to openssldaurnimator2016-01-041-2/+11
| * bignum: handle negative hex numbersdaurnimator2016-01-041-2/+11
| * bignum: Add fromBinary constructordaurnimator2016-01-041-0/+12
| * bignum.new: Allow initialisation from hex stringsdaurnimator2016-01-041-5/+10