<password>şifreniz</password>
<cryptPassword>9E-2A-47-DA-76-77-C2-07-52-F2-FF-DA-88-2A-BD-6B</cryptPassword>
<newCryptPassword>B7-FA-36-47-1E-3E-5A-5D-F5-F2-FF-D7-1D-DE-C2-2E-8D-9D-61-98</newCryptPassword>
public static bool ProtectPasswords = true;
public static PasswordProtection ProtectPasswords = PasswordProtection.Crypt;
9e2a47da7677c20752f2ffda882abd6b
9E-2A-47-DA-76-77-C2-07-52-F2-FF-DA-88-2A-BD-6B
public static string HashMD5( string phrase )
{
if ( m_MD5HashProvider == null )
m_MD5HashProvider = new MD5CryptoServiceProvider();
if ( m_HashBuffer == null )
m_HashBuffer = new byte[256];
int length = Encoding.ASCII.GetBytes( phrase, 0, phrase.Length> 256 ? 256 : phrase.Length, m_HashBuffer, 0 );
byte[] hashed = m_MD5HashProvider.ComputeHash( m_HashBuffer, 0, length );
// Account bölümü için editlenen bölüm
string hexaHash = "";
foreach (byte b in hashed)
{
hexaHash += String.Format("{0:x2}", b);
}
return hexaHash;
// edit bölüm sonu
}
0 Kullanıcı
Ultima Online 4 gün önce
Sunucular 1 hafta önce
Duyurular 3 hafta önce
Sphere Scripting 3 hafta önce
Ultima Online 3 hafta önce
Sunucular 4 hafta önce
Diğer Oyunlar 1 ay önce
Sunucular 1 ay önce
Ultima Online 1 ay önce
Sunucular 1 ay önce
Ultima Online 1 ay önce
Ultima Online 2 ay önce
2024-10-31 22:47
2024-10-14 17:45
2024-09-26 14:21
2024-07-08 22:50
2024-07-08 22:34
2024-06-19 22:05
2024-06-01 02:19
2024-05-31 21:17