I have generated multiple numbers of password for students. And I have kept those in database as studentPassword. Now want to view the encrypted password list in my view page table as decrypted value. Suppose, in the database table there is a password 123456. But it's in encrypted formation. So how can I show the Decrypted value 123456 in my view page table row?
Asked
Active
Viewed 103 times
-1

Mousumi
- 31
- 2
- 6
-
not a good idea to encrypt passwords. you should hash passwords. – Daniel A. White Oct 30 '18 at 14:31
1 Answers
0
You cannot see decrypted value. This hash looks like it was produced by bcrypt
. Read documentation please.

Fka
- 6,044
- 5
- 42
- 60