commit a19fbaa: [Minor] Lua_util: Add lupa.filters.pbkdf

Vsevolod Stakhov vsevolod at highsecure.ru
Thu Mar 28 14:56:09 UTC 2019


Author: Vsevolod Stakhov
Date: 2019-03-28 14:53:37 +0000
URL: https://github.com/rspamd/rspamd/commit/a19fbaaec3697b26cf660dcf52ff00b1c8b6c601 (HEAD -> master)

[Minor] Lua_util: Add lupa.filters.pbkdf

---
 lualib/lua_util.lua | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/lualib/lua_util.lua b/lualib/lua_util.lua
index d32058547..7e0d7d878 100644
--- a/lualib/lua_util.lua
+++ b/lualib/lua_util.lua
@@ -31,11 +31,17 @@ local space = lpeg.S' \t\n\v\f\r'
 local nospace = 1 - space
 local ptrim = space^0 * lpeg.C((space^0 * nospace^1)^0)
 local match = lpeg.match
+
 lupa.configure{
   keep_trailing_newline = true,
   autoescape = false,
 }
 
+lupa.filters.pbkdf = function(s)
+  local cr = require "rspamd_cryptobox"
+  return cr.pbkdf(s)
+end
+
 local function rspamd_str_split(s, sep)
   local gr
   if not sep then


More information about the Commits mailing list