diff options
author | Adam Frisby | 2008-05-01 18:50:44 +0000 |
---|---|---|
committer | Adam Frisby | 2008-05-01 18:50:44 +0000 |
commit | 76d8eaa4069d6445c47784168e274ba4253f7b9c (patch) | |
tree | 6f0f023b9c994253f3f6808edf94949c7ebd2d29 /OpenSim/Data/MSSQL | |
parent | Attempt to locate SL client in LaunchSLClient under other Unices. (diff) | |
download | opensim-SC_OLD-76d8eaa4069d6445c47784168e274ba4253f7b9c.zip opensim-SC_OLD-76d8eaa4069d6445c47784168e274ba4253f7b9c.tar.gz opensim-SC_OLD-76d8eaa4069d6445c47784168e274ba4253f7b9c.tar.bz2 opensim-SC_OLD-76d8eaa4069d6445c47784168e274ba4253f7b9c.tar.xz |
* Thanks to Mic Bowman for inspiring me to look at that we are still using ASCIIEncoder in places we shouldn't.
Diffstat (limited to 'OpenSim/Data/MSSQL')
-rw-r--r-- | OpenSim/Data/MSSQL/MSSQLGridData.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLGridData.cs b/OpenSim/Data/MSSQL/MSSQLGridData.cs index 3330732..cf81bee 100644 --- a/OpenSim/Data/MSSQL/MSSQLGridData.cs +++ b/OpenSim/Data/MSSQL/MSSQLGridData.cs | |||
@@ -417,7 +417,7 @@ namespace OpenSim.Data.MSSQL | |||
417 | public bool AuthenticateSim(LLUUID uuid, ulong handle, string authhash, string challenge) | 417 | public bool AuthenticateSim(LLUUID uuid, ulong handle, string authhash, string challenge) |
418 | { | 418 | { |
419 | SHA512Managed HashProvider = new SHA512Managed(); | 419 | SHA512Managed HashProvider = new SHA512Managed(); |
420 | ASCIIEncoding TextProvider = new ASCIIEncoding(); | 420 | Encoding TextProvider = new UTF8Encoding(); |
421 | 421 | ||
422 | byte[] stream = TextProvider.GetBytes(uuid.ToString() + ":" + handle.ToString() + ":" + challenge); | 422 | byte[] stream = TextProvider.GetBytes(uuid.ToString() + ":" + handle.ToString() + ":" + challenge); |
423 | byte[] hash = HashProvider.ComputeHash(stream); | 423 | byte[] hash = HashProvider.ComputeHash(stream); |