Example #1
0
 public static long DecriptToLong(this string value)
 {
     return(long.Parse(Encriptions.DecryptSHA(value)));
 }
Example #2
0
 public static int DecriptToInt(this string value)
 {
     return(int.Parse(Encriptions.DecryptSHA(value)));
 }
Example #3
0
 public static string Decript(this string value)
 {
     return(Encriptions.DecryptSHA(value));
 }
Example #4
0
 public static string EncryptIOS(this string value)
 {
     return(Encriptions.EncryptIOS(value));
 }
Example #5
0
 public static string Encript(this long value)
 {
     return(Encriptions.EncryptSHA(value.ToString()));
 }