OpenID auth needs hashing before authenticating

This commit is contained in:
BlueWall
2012-03-02 15:05:06 -05:00
parent 6fc350725d
commit d242d47e5c
2 changed files with 2 additions and 2 deletions

View File

@@ -80,7 +80,7 @@ namespace OpenSim.Services.AuthenticationService
{
string hashed = Util.Md5Hash(password + ":" + data.Data["passwordSalt"].ToString());
//m_log.DebugFormat("[PASS AUTH]: got {0}; hashed = {1}; stored = {2}", password, hashed, data.Data["passwordHash"].ToString());
m_log.DebugFormat("[PASS AUTH]: got {0}; hashed = {1}; stored = {2}", password, hashed, data.Data["passwordHash"].ToString());
if (data.Data["passwordHash"].ToString() == hashed)
{