]> git.cameronkatri.com Git - cgit.git/blobdiff - filters/email-gravatar.lua
git: update to v2.30.1
[cgit.git] / filters / email-gravatar.lua
index 52cf4268a4963188e577aa0de8b06ad5dfc447c3..c39b490d6bb6b923eca3497fb1f6eb759d57a442 100644 (file)
@@ -3,15 +3,24 @@
 -- prefix in filters. It is much faster than the corresponding python script.
 --
 -- Requirements:
---     luacrypto >= 0.3
---     <http://mkottman.github.io/luacrypto/>
+--     luaossl
+--     <http://25thandclement.com/~william/projects/luaossl.html>
 --
 
-local crypto = require("crypto")
+local digest = require("openssl.digest")
+
+function md5_hex(input)
+       local b = digest.new("md5"):final(input)
+       local x = ""
+       for i = 1, #b do
+               x = x .. string.format("%.2x", string.byte(b, i))
+       end
+       return x
+end
 
 function filter_open(email, page)
        buffer = ""
-       md5 = crypto.digest("md5", email:sub(2, -2):lower())
+       md5 = md5_hex(email:sub(2, -2):lower())
 end
 
 function filter_close()