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