<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
}
March 01, 2010
June 21, 2004
July 23, 2011
January 31, 2011
November 18, 2005
Sunucular 1 weeks önce
Sunucular 1 weeks önce
Sunucular 3 weeks önce
Counter-Strike 1 months önce
Sunucular 1 months önce
Ultima Online 2 months önce
Sunucular 2 months önce
Sphere Scripting 3 months önce
June 30, 2017
June 24, 2017
June 22, 2017
June 18, 2017
June 03, 2017
May 28, 2017
May 09, 2017
March 31, 2017
Yorumlar (0)