# HG changeset patch # User Matthew Wild # Date 1277236455 -3600 # Node ID 180a0b3b018d1e456230fdcbea6ae4a6a04f2bf8 # Parent 1a84d7d6f66769591215fc077d62b8bbbe610d11 mod_auth_internal_hashed: Update TODO comments to COMPAT diff -r 1a84d7d6f667 -r 180a0b3b018d plugins/mod_auth_internal_hashed.lua --- a/plugins/mod_auth_internal_hashed.lua Tue Jun 22 20:52:43 2010 +0100 +++ b/plugins/mod_auth_internal_hashed.lua Tue Jun 22 20:54:15 2010 +0100 @@ -22,7 +22,7 @@ local nodeprep = require "util.encodings".stringprep.nodeprep; local hosts = hosts; --- TODO: remove these two lines in near future +-- COMPAT w/old trunk: remove these two lines before 0.8 release local hmac_sha1 = require "util.hmac".sha1; local sha1 = require "util.hashes".sha1; @@ -76,7 +76,7 @@ end -- convert hexpass to stored_key and server_key - -- TODO: remove this in near future + -- COMPAT w/old trunk: remove before 0.8 release if credentials.hashpass then local salted_password = from_hex(credentials.hashpass); credentials.stored_key = sha1(hmac_sha1(salted_password, "Client Key"), true); @@ -155,7 +155,7 @@ end -- convert hexpass to stored_key and server_key - -- TODO: remove this in near future + -- COMPAT w/old trunk: remove before 0.8 release if credentials.hashpass then local salted_password = from_hex(credentials.hashpass); credentials.stored_key = sha1(hmac_sha1(salted_password, "Client Key"), true);