/**
  * Get password
  *
  * @return string 
  */
 public function getPassword()
 {
     $encryptionUtil = new EncryptionUtil();
     return $encryptionUtil->decrypt($this->password);
 }
Пример #2
0
 /**
  * Get ssn
  *
  * @return string 
  */
 public function getSsn()
 {
     $encryptionUtil = new EncryptionUtil();
     return $encryptionUtil->decrypt($this->ssn, $this::SSN_PASSPHRASE);
 }