In my Drupal module I'm attempting to hook in where a user changes their password. I need this in cleartext for something else.
So I did the basic thing and used tcauth_user_presave(). I then changed my password which triggered a logging function. However when I looked at the log the provided &$edit, $account, and $category variables didn't contain the new password in cleartext. The only thing that was available was the old password (in cleartext) and the new password hashed.
Is there anyway to get the cleartext password when someone changes it? This is Drupal 7 if it matters.