There is only some slow blogging going on recently… So here’s something to fill the Lazyness-Gaps /// <summary> /// Encrypts the specified Text to SHA1 /// </summary> /// <param name="text">The Text to encrypt</param> /// <returns>The SHA1-Encrypted text</returns> public static string EncryptToSHA1(this string text) { SHA1 sha1 = new SHA1CryptoServiceProvider(); byte[] arrayData = Encoding.ASCII.GetBytes(text); byte[] arrayResult [...]