private string FormatKey(string cacheid, string key, Nullable <long> prefix) { return(String.Format("{0}_{1}_{2}", cacheid, prefix, GXUtil.GetHash(key))); }
private string FormatKey(string cacheid, string key, Nullable <long> prefix) { return(cacheid + prefix + GXUtil.GetHash(key)); }
protected string GetEncryptedHash(string value, string key) { return(Encrypt64(GXUtil.GetHash(GeneXus.Web.Security.WebSecurityHelper.StripInvalidChars(value), Cryptography.Constants.SecurityHashAlgorithm), key)); }