Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
522 views
in Q2A Core by
How can I know the user's password through the database?

As it exists in long coding and incomprehensible and I need this property a lot because many of them forget the secret code

1 Answer

+2 votes
by
Passwords are encrypted into irreversible code. Basically, you can not restore the password code in the database. Therefore there is a password reset form. These things are common to many systems.
by
Hi,can you teach me how to make irreversible code for qa_message's messages,like a admin but the users can read on webside
Please see
https://www.question2answer.org/qa/75231/why-encrypt-within-qp_meesagge-phpmyadmin-future-versions
by
The information is encrypted for later reuse. Passwords entered later will be encrypted again, and matching checks with the encrypted (stored) passwords will prove that the password is correct. Encrypted messages can not be reused. The message needs to be displayed later when the recipient logs in. So it can not be encrypted.
by
+1
From a technical view it's known as "hashing" rather than encryption :)
But yes, the point is that it's one-way and cannot be reversed. This is the standard for storing passwords on websites.
...