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