controller make GetMD5 private and non static

This commit is contained in:
Hylke Bons 2011-05-08 22:22:27 +01:00
parent 7f2b555e95
commit 5cf545ab0c

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);