From 3289e9fa7c2e6eb1ce34df86047e03cde37d79d8 Mon Sep 17 00:00:00 2001 From: kikito Date: Mon, 9 Feb 2015 11:16:47 +0100 Subject: [PATCH] change README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b396b2c..dd3bffd 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ md5.lua ======== -This pure-Lua module computes md5 in Lua 5.1. +This pure-Lua module computes md5 in Lua 5.1, Lua 5.2 and LuaJIT, using native bit-manipulation libraries when available, and falling back to table-based manipulation of integers in 5.1. It implements md5.sum and md5.sumhex like the [kernel project md5 package](http://www.keplerproject.org/md5/), but it's done completely in Lua, with no dependencies on other libs or C files.