diff options
author | BlueWall | 2012-03-02 15:05:06 -0500 |
---|---|---|
committer | BlueWall | 2012-03-02 15:05:06 -0500 |
commit | d242d47e5cf1274225091e843e065366a3620c14 (patch) | |
tree | c634f6547a0ba3eb39d7634086daf9fc2a18fd99 /OpenSim/Services/AuthenticationService | |
parent | Merge branch 'master' into v3_support (diff) | |
download | opensim-SC_OLD-d242d47e5cf1274225091e843e065366a3620c14.zip opensim-SC_OLD-d242d47e5cf1274225091e843e065366a3620c14.tar.gz opensim-SC_OLD-d242d47e5cf1274225091e843e065366a3620c14.tar.bz2 opensim-SC_OLD-d242d47e5cf1274225091e843e065366a3620c14.tar.xz |
OpenID auth needs hashing before authenticating
Diffstat (limited to 'OpenSim/Services/AuthenticationService')
-rw-r--r-- | OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs b/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs index 48eb3f8..5f1bde1 100644 --- a/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs +++ b/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs | |||
@@ -80,7 +80,7 @@ namespace OpenSim.Services.AuthenticationService | |||
80 | { | 80 | { |
81 | string hashed = Util.Md5Hash(password + ":" + data.Data["passwordSalt"].ToString()); | 81 | string hashed = Util.Md5Hash(password + ":" + data.Data["passwordSalt"].ToString()); |
82 | 82 | ||
83 | //m_log.DebugFormat("[PASS AUTH]: got {0}; hashed = {1}; stored = {2}", password, hashed, data.Data["passwordHash"].ToString()); | 83 | m_log.DebugFormat("[PASS AUTH]: got {0}; hashed = {1}; stored = {2}", password, hashed, data.Data["passwordHash"].ToString()); |
84 | 84 | ||
85 | if (data.Data["passwordHash"].ToString() == hashed) | 85 | if (data.Data["passwordHash"].ToString() == hashed) |
86 | { | 86 | { |