summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* patches to build on AIXrel-20140718William Ahern (william@25thandclement.com)2014-07-182-5/+11
|
* be more consistent about idiomatic 'return throwssl', patterned after ↵william2014-07-171-3/+3
| | | | 'return lua_error'
* in xe_new change casting to be more narrowly tailored; and replace malloc ↵william2014-07-171-13/+17
| | | | usage which failed to check for NULL with an automatic buffer
* Merge branch 'custom-ext' of https://github.com/kunkku/luaossl into ↵William Ahern2014-07-163-0/+110
|\ | | | | | | kunkku-custom-ext
| * module for custom certificate extensionsKaarle Ritvanen2014-06-013-36/+101
| |
| * method for adding arbitrary certificate extensionsKaarle Ritvanen2014-06-011-0/+45
| |
* | fixed interpose implementations for pkey and cipher classes, which passed ↵william2014-07-151-2/+2
| | | | | | | | the wrong metatable names to the generic interpose
* | Merge branch 'pkcs12' of https://github.com/kunkku/luaossl into kunkku-pkcs12william2014-07-153-0/+135
|\ \
| * | pkcs12.new: use lua_pushfstring for Lua 5.1 compatibilityKaarle Ritvanen2014-06-051-1/+1
| | |
| * | PKCS #12 moduleKaarle Ritvanen2014-05-283-0/+135
| |/
* | Merge branch 'text' of https://github.com/kunkku/luaossl into kunkku-textwilliam2014-07-151-0/+80
|\ \
| * | text form conversion for certificates and CRLsKaarle Ritvanen2014-07-041-0/+80
| |/
* | Merge branch 'crl' of https://github.com/kunkku/luaosslwilliam2014-07-151-1/+1
|\ \
| * | crl:getLastUpdate: return correct timestampKaarle Ritvanen2014-06-051-1/+1
| |/
* / our use of uintptr_t broke openbsd buildWilliam Ahern2014-05-121-0/+1
|/
* hookup explicit tostring methods for CRT and CSR objects (still need to ↵william2014-05-121-0/+2
| | | | refactor PKey to allow specifying public, private or both)
* add extra argument to be consumed by ellipsis in overloaded macroswilliam2014-05-101-2/+2
|
* refactor xx_add to be more linearwilliam2014-05-101-24/+38
|
* replace getUpdateTimes/setUpdateTimes with getLastUpdate/setLastUpdate and ↵william2014-05-091-43/+64
| | | | getNextUpdate/setNextUpdate, because the semantics don't quite match that of crt:getLifetime, which it was copied from
* CRL generation moduleKaarle Ritvanen2014-05-083-0/+257
|
* call RAND_add with new randomness when fork detectedwilliam2014-04-191-5/+54
|
* ASLR behaves differently on different platforms; try to maximize our chances ↵william2014-04-191-2/+2
| | | | of benefiting from it
* forgot that solaris doesn't have sysctl.hwilliam2014-04-031-0/+2
|
* add rand.stir, which polls system entropy in the most robust way possible, ↵william2014-04-191-20/+207
| | | | because OpenSSL only knows how to use /dev/urandom
* silence warnings with Solaris Studio compilerWilliam Ahern2013-12-271-1/+1
|
* don't use -ldl on BSDsWilliam Ahern2013-07-201-1/+8
|
* rename pubkey.lua to pkey.lua and create symlink on install for backward ↵william2014-03-271-4/+0
| | | | compatability
* rename pubkey.lua to pkey.lua and create symlink on install for backward ↵william2014-03-272-0/+8
| | | | compatability
* rename openssl.pubkey identifiers to openssl.pkeywilliam2014-03-272-47/+55
|
* support Lua 5.3 64-bit integer type in rand.uniformwilliam2014-03-271-9/+18
|
* make digest:update and hmac:update return the digest object rather than ↵william2014-03-271-4/+4
| | | | boolean true, similar to the change for :add methods
* forgot to remove old lua_settop statementwilliam2014-03-271-1/+0
|
* add DER parameter to pk__tostring for symmetry, but we still need to ↵william2014-03-261-6/+16
| | | | refactor stringification APIs because it's unuseable as-is
* alter several :add methods to return the parent object rather than boolean ↵william2014-03-261-4/+4
| | | | true, to allow chained invocations
* add GEN_DIRNAME supportwilliam2014-03-261-33/+60
|
* add DER input and output formats, plus 'autodetect' PEM-or-DER, for almost ↵william2014-03-251-62/+167
| | | | everything (except pk__tostring and pk_toPEM, FIXME)
* fixup help targetwilliam2014-03-221-7/+7
|
* add Lua 5.3 supportwilliam2014-03-221-5/+20
|
* fix include guard bugwilliam2014-03-221-3/+3
|
* add multithread reentrancy protectionWilliam Ahern2014-01-312-4/+157
|
* move newly split files into src/ directoryWilliam Ahern2013-12-0917-0/+4362