md5 icon indicating copy to clipboard operation
md5 copied to clipboard

MD5 offers basic cryptographic facilities for Lua 5.1.

Results 4 md5 issues
Sort by recently updated
recently updated
newest added

I think lines [25](https://github.com/keplerproject/md5/blob/846d71d1e43d6c29d25bd325b396b11838075d4d/Makefile#L25) and [26](https://github.com/keplerproject/md5/blob/846d71d1e43d6c29d25bd325b396b11838075d4d/Makefile#L26) in Makefile should be swapped: ``` install: src/$(MD5_LIBNAME) src/$(DES56_LIBNAME) cp src/$(DES56_LIBNAME) $(LUA_LIBDIR) mkdir -p $(LUA_LIBDIR)/md5 cp src/$(MD5_LIBNAME) $(LUA_LIBDIR)/md5/ mkdir -p $(LUA_DIR) cp $(MD5_LUAS) $(LUA_DIR)...

- parse keys that include 0's e.g. converted from hexadecimal inputs - handle arbitrary binary plaintext/ciphertext without assuming they should be NULL terminated strings (which are handled properly anyhow) -...

``` md5_init(m); md5_update(m, "hello", strlen("hello")); md5_update(m, "world", strlen("world")); md5_finish(m, hash); ``` hash: a48b171ee450c14dab8e7162cdce3f8d ``` md5_init(m); md5_update(m, "helloworld", strlen("helloworld")); md5_finish(m, hash); ``` hash: fc5e038d38a57032085441e7fe7010b0 In Python or other C implementations, eg...