what is hashing and when do you use it

704 views

Its different then regular encryption right?

In: Technology

5 Answers

Anonymous 0 Comments

Hashing is the process of turning an arbitrary input to a structured output, usually with fixed length. For example, a function that takes some text (of any length) and maps it to a 3 digit number is a hash function. Many such hashes exist, some are better and some are worse.

Hashing is entirely different from encryption/cryptography etc. but is somewhat related. Many aspects of cryptography uses hashes (and properties of good hashes) to ensure security.

You are viewing 1 out of 5 answers, click here to view all answers.