using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Signum.Entities.Reflection { public static class StringHashEncoder { static readonly string letters = "0123456789ABCDEFGHJKMNPQRSTVWXYZ"; public static string Codify(string str) { int hash = GetHashCode32(str); StringBuilder sb = new StringBuilder(); for (int i = 0; i < 32; i += 5) { sb.Append(letters[hash & 31]); hash >>= 5; } return sb.ToString(); } public static int GetHashCode32(string value) { int num = 0x15051505; int num2 = num; for (int i = 0; i < value.Length; i++) { if ((i & 0x1) == 0) num = (((num << 5) + num) + (num >> 0x1b)) ^ value[i]; else num2 = (((num2 << 5) + num2) + (num2 >> 0x1b)) ^ value[i]; } return (num + (num2 * 0x5d588b65)); } } }
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)
Math Primers for Programmers