示例#1
0
 public static int DecriptToInt(this string value)
 {
     return(int.Parse(Encriptions.DecryptSHA(value)));
 }
示例#2
0
 public static long DecriptToLong(this string value)
 {
     return(long.Parse(Encriptions.DecryptSHA(value)));
 }
示例#3
0
 public static string Decript(this string value)
 {
     return(Encriptions.DecryptSHA(value));
 }