示例#1
0
 public static string DecryptDESByAdminPwd(string adminPwd)
 {
     return(DESHelper.DecryptDES(adminPwd, Constant.AdminDESKey));
 }
示例#2
0
 public static string DecryptDESByUserPwd(string userPwd)
 {
     return(DESHelper.DecryptDES(userPwd, Constant.UserDESKey));
 }