LitDev.LDEncryption.MD5Hash C# (CSharp) Method

MD5Hash() public static method

Create an MD5 hash of a text input (http://wikipedia.org/wiki/MD5). This 32 character hash is recommended where a general or shorter hash is required (password or data integrity).
public static MD5Hash ( Primitive text ) : Primitive
text Primitive A text or password to create a hash.
return Primitive
        public static Primitive MD5Hash(Primitive text)
        {
            return StringEncryption.CalculateMD5Hash(text);
        }