lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On 06/10/2017 01:39 PM, Phil Leblanc wrote:
> I am happy to announce some additions to my Pure Lua Crypto project (PLC) [1]
> 
> [1] https://github.com/philanc/plc

I like cryptostuff, especially when code is written for clarity, not
performance.

Why not add MD5 at least for historically reasons? It is like SHA-1 but
about two times simpler. For example you may look at my implementation
of MD5: https://github.com/martin-eden/workshop/tree/master/formats/md5

-- Martin