controller make GetMD5 private and non static

This commit is contained in:
Hylke Bons 2011-05-08 22:22:27 +01:00
parent a42292cbe9
commit 2659300e13

View file

@ -1035,7 +1035,7 @@ namespace SparkleShare {
// Creates an MD5 hash of input
public static string GetMD5 (string s)
private string GetMD5 (string s)
{
MD5 md5 = new MD5CryptoServiceProvider ();
Byte[] bytes = ASCIIEncoding.Default.GetBytes (s);