GetMD5ForString: don't hex

This commit is contained in:
Glenn Maynard
2007-01-26 04:35:15 +00:00
parent 961eae77a3
commit abe62b0920
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -830,7 +830,7 @@ RString NetworkSyncManager::MD5Hex( const RString &sInput )
RString HashedName;
RString PreHashedName;
RString sOutput = CryptManager::GetMD5ForString( sInput );
RString sOutput = BinaryToHex( CryptManager::GetMD5ForString(sInput) );
for (int i = 0; i < 16; i++)
PreHashedName += ssprintf( "%2X", sOutput[i] );