adspace


Explain what is the difference between encrypting a password and applying a hashing?

Answer Posted / Shemphan Sun

Encryption is a process of converting plain text into cipher text using an algorithm, whereas hashing is a process of converting data (including plain text) into fixed size alphanumeric strings called hash values. Encrypted data can be decrypted back to its original form using the correct key, while hashed data cannot be reversed to its original form. Hash functions are often used for password storage in databases because they can quickly verify if a provided password matches the stored hash value without storing the actual password.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write the .net syntax for 'while loop'?

1141