public static ContentHash GetKeyHash(string Key)
            {
                string UpperKey = Key.ToUpperInvariant();

                byte[] UpperKeyBytes = Encoding.UTF8.GetBytes(UpperKey);
                return(ContentHash.SHA1(UpperKeyBytes));
            }