public string ViewUserName(TDES tdes)
 {
     return(tdes.Decrypt(userName));
 }
 public string ViewPassword(TDES tdes)
 {
     return(tdes.Decrypt(password));
 }
Beispiel #3
0
 private Controller()
 {
     fileEncryptor = new TDES();
     dataEncryptor = new TDES();
 }