/// <summary> /// Returns hash characters based on digits passed to it. /// </summary> /// <param name="digits">Digits to checksum.</param> /// <exception cref="System.ArgumentNullException">Digits cannot be null.</exception> public static string ComputeHash(string digits) { return(Damm.ComputeHash(digits, returnAllDigits: false)); }