Пример #1
0
 /**
  * Decrypts a password so that it can be compared with the user input.
  * Uses the algorithm defined in the passwordEncryptionMode property.
  *
  * @param  string the encrypted password
  * @return string the decrypted password
  *
  * @access public
  */
 function decryptPW($encryptedPW)
 {
     return LiveUser::decryptPW($encryptedPW, $this->passwordEncryptionMode, $this->secret);
 }