aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* fixup examples/ for pubkey -> pkey changesLibravatarLibravatar william 2014-03-272-7/+7
|
* rename pubkey.lua to pkey.lua and create symlink on install for backward ↵LibravatarLibravatar william 2014-03-271-4/+0
| | | | compatability
* rename pubkey.lua to pkey.lua and create symlink on install for backward ↵LibravatarLibravatar william 2014-03-273-0/+12
| | | | compatability
* rename openssl.pubkey identifiers to openssl.pkeyLibravatarLibravatar william 2014-03-272-47/+55
|
* update rand.uniform documentation for new Lua 5.3 supportLibravatarLibravatar william 2014-03-271-1/+1
|
* support Lua 5.3 64-bit integer type in rand.uniformLibravatarLibravatar william 2014-03-271-9/+18
|
* update user guide to document DER support, GEN_DIRNAME, and return value ↵LibravatarLibravatar william 2014-03-271-110/+112
| | | | changes for :all, digest:update, and hmac:update
* make digest:update and hmac:update return the digest object rather than ↵LibravatarLibravatar william 2014-03-271-4/+4
| | | | boolean true, similar to the change for :add methods
* forgot to remove old lua_settop statementLibravatarLibravatar william 2014-03-271-1/+0
|
* add DER parameter to pk__tostring for symmetry, but we still need to ↵LibravatarLibravatar william 2014-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 ↵LibravatarLibravatar william 2014-03-261-4/+4
| | | | true, to allow chained invocations
* add GEN_DIRNAME supportLibravatarLibravatar william 2014-03-261-33/+60
|
* add DER input and output formats, plus 'autodetect' PEM-or-DER, for almost ↵LibravatarLibravatar william 2014-03-251-62/+167
| | | | everything (except pk__tostring and pk_toPEM, FIXME)
* update changelogLibravatarLibravatar william 2014-03-221-0/+7
|
* fixup help targetLibravatarLibravatar william 2014-03-221-7/+7
|
* make documentation agree with how the targets work wrt Lua 5.3LibravatarLibravatar william 2014-03-221-3/+9
|
* add Lua 5.3 supportLibravatarLibravatar william 2014-03-222-5/+24
|
* fix include guard bugLibravatarLibravatar william 2014-03-221-3/+3
|
* fix date in changelogLibravatarLibravatar william 2014-03-221-1/+1
|
* add luaossl documentation as copied and amended from the cqueues user guideLibravatarLibravatar william 2014-03-221-0/+860
|
* add multithread reentrancy protectionLibravatarLibravatar William Ahern 2014-01-313-4/+165
|
* forgot to add changelog scriptLibravatarLibravatar William Ahern 2013-12-101-0/+92
|
* copy over our examples/LibravatarLibravatar william 2013-12-092-0/+89
|
* add debian packaging filesLibravatarLibravatar william 2013-12-099-0/+79
|
* copy over build files from cqueuesLibravatarLibravatar william 2013-12-095-0/+1220
|
* move newly split files into src/ directoryLibravatarLibravatar William Ahern 2013-12-0917-0/+0
|
* -n LibravatarLibravatar William Ahern 2013-12-091-15/+14
| | | | update openssl metatable names in preparation for a split away from cqueues
* -n LibravatarLibravatar William Ahern 2013-12-061-3/+105
| | | | add uniform number generator to openssl.rand
* -n LibravatarLibravatar William Ahern 2013-12-043-1/+56
| | | | add openssl.rand modue
* -n LibravatarLibravatar William Ahern 2013-10-251-10/+24
| | | | more consistent build targets
* -n LibravatarLibravatar William Ahern 2013-10-241-0/+39
| | | | some tweaks to build documentation
* -n LibravatarLibravatar William Ahern 2013-10-241-5/+7
| | | | add easier target names
* -n LibravatarLibravatar William Ahern 2013-05-051-0/+4
| | | | early version of LuaJIT don't defined LUA_FILEHANDLE
* -n LibravatarLibravatar William Ahern 2013-09-091-6/+18
| | | | only define all, install, and uninstall targets when invoked from the project, and not source-included; and luac -p to verify openssl modules before installation
* -n LibravatarLibravatar William Ahern 2013-09-091-7/+10
| | | | exclude currently dead code, and fix array terminator bug
* -n LibravatarLibravatar William Ahern 2013-09-091-1/+1
| | | | fix initialization issue with tm.tm_sec in tm2unix, and be conservative about it in case future code uses other members
* -n LibravatarLibravatar William Ahern 2013-09-091-150/+133
| | | | update openssl modules to new build
* -n LibravatarLibravatar William Ahern 2013-03-141-4/+4
| | | | fix luaL_argcheck usage, and don't try to use unsupported %u format specifier
* -n LibravatarLibravatar William Ahern 2013-03-141-25/+58
| | | | make cipher API easier to use, and also fix Lua stack traversal bug in digest and hmac code which prematurely exited loop processing parameters
* -n LibravatarLibravatar William Ahern 2013-03-141-5/+35
| | | | don't throw errors in cipher:update and :final
* -n LibravatarLibravatar William Ahern 2013-03-141-1/+1
| | | | allow NULL IV for, e.g., ECB mode
* -n LibravatarLibravatar William Ahern 2013-03-011-2/+3
| | | | fix our proxy Makefile
* -n LibravatarLibravatar William Ahern 2013-03-131-0/+6
| | | | add proxy Makefile
* -n LibravatarLibravatar William Ahern 2013-03-131-0/+0
| | | | rename to GNUmakefile
* -n LibravatarLibravatar William Ahern 2013-03-111-6/+6
| | | | use correct indices in cipher_init, and fix method name mixup
* -n LibravatarLibravatar William Ahern 2013-03-111-1/+6
| | | | forgot to install openssl.cipher.lua
* -n LibravatarLibravatar William Ahern 2013-03-112-1/+172
| | | | add EVP_CIPHER_CTX bindings
* -n LibravatarLibravatar William Ahern 2013-02-281-4/+0
| | | | our local LuaJIT headers bad; LUA_FILEHANDLE should always exist
* -n LibravatarLibravatar William Ahern 2013-02-271-0/+4
| | | | add LUA_FILEHANDLE to compat52.h
* -n LibravatarLibravatar William Ahern 2013-02-271-1/+1
| | | | fix typo in luaL_setfuncs compat