Click here to Skip to main content
16,021,115 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hai,

I have a table with user info like user id and password.

I want to know encryption method which is used to encrypt the password.

This is how encrypted password look like:

A5-7D-92-22-B5-04-9E-15-03-AB-AE-60-25-75-89-4A-29-14-6C-14-A5-59-CC-2B-8E-52-3E-B8-BB-02-30-30

Kindly help me.

What I have tried:

Hai,

I have a table with user info like user id and password. Db is MS SQL

I want to know encryption method which is used to encrypt the password.

This is how encrypted password look like:

A5-7D-92-22-B5-04-9E-15-03-AB-AE-60-25-75-89-4A-29-14-6C-14-A5-59-CC-2B-8E-52-3E-B8-BB-02-30-30

Kindly help me.
Posted
Updated 11-Mar-17 5:08am

You can't tell from the encrypted data: the chances are that it isn't encrypted anyway - it certainly shouldn't be as encrypted passwords are inherently insecure.
Most likely, it's hashed - which means that the original data cannot be recovered from the stored value. Instead, the user entry is hashed using the same method and the new hash is compared to the old to ensure a valid password was entered.
 
Share this answer
 
Quote:
How can to know the encryption method used to encrypt a password ?

The best is to ask the one who designed this.

Beyond the simplest encryptions (like ROT13), nobody can tell which encryption was used just by looking at a random value. Only movie heroes and bad guys can do it in matter of seconds.

Quote:
A5-7D-92-22-B5-04-9E-15-03-AB-AE-60-25-75-89-4A-29-14-6C-14-A5-59-CC-2B-8E-52-3E-B8-BB-02-30-30

What can be told is that this is hexadecimal, it is used because encrypted values can contain non printable chars.
 
Share this answer
 

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