public static long DecriptToLong(this string value) { return(long.Parse(Encriptions.DecryptSHA(value))); }
public static int DecriptToInt(this string value) { return(int.Parse(Encriptions.DecryptSHA(value))); }
public static string Decript(this string value) { return(Encriptions.DecryptSHA(value)); }
public static string EncryptIOS(this string value) { return(Encriptions.EncryptIOS(value)); }
public static string Encript(this long value) { return(Encriptions.EncryptSHA(value.ToString())); }