| 12345678910111213141516 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GreenTree.Maschinenbestellungen.Core.Helper
- {
- public interface IUserHelper
- {
- /// <summary>
- /// Generates a MD5 hash from a string
- /// </summary>
- /// <param name="str">The string to encrypt.</param>
- /// <param name="lowerCase">Return hashed string in lower case.</param>
- public string HashString(string str, bool lowerCase);
- }
- }
|