IUserHelper.cs 469 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace GreenTree.Maschinenbestellungen.Core.Helper
  5. {
  6. public interface IUserHelper
  7. {
  8. /// <summary>
  9. /// Generates a MD5 hash from a string
  10. /// </summary>
  11. /// <param name="str">The string to encrypt.</param>
  12. /// <param name="lowerCase">Return hashed string in lower case.</param>
  13. public string HashString(string str, bool lowerCase);
  14. }
  15. }