Click here to Skip to main content
15,896,377 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
What is the syntax to decrypt password which is saved in encrypted format in oracle 11g?
Can anybody help me?
Posted
Comments
Bernhard Hiller 10-Jan-14 2:59am    
Do you understand the concepts behind encryption/decryption and safe password storage? And more important: the difference between them?

1 solution

There are a couple of things here:
1) Passwords should never be encrypted: they should be hashed instead. Encryption requires a key to decrypt, which needs to be available to software that will read them. This means the key and the data it "protects" are kept close, so it is a security risk! Hashing is not reversible, so it is more secure - you cannot get the input password from the stored value.
2) There are a huge number of ways to encrypt data: even with the encryption key, there is no "one way" to decrypt anything.

Look at the code you wrote to encrypt it, and then apply the appropriate decryption algorithm for that. Then replace it all with hashing. You did write the encryption code, didn't you?
 
Share this answer
 
Comments
Member 9410081 10-Jan-14 3:43am    
Original code was written by another developer I don't have any idea regarding this hence have this query.
OriginalGriff 10-Jan-14 4:13am    
Then you will have to go and talk to the other developer.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900