M
M
mr_sota2012-05-13 13:28:37
Data protection
mr_sota, 2012-05-13 13:28:37

Most reliable hashing method?

Please tell me the most reliable hashing method from the list
And its implementation in C ++ (Qt)

Answer the question

In order to leave comments, you need to log in

6 answer(s)
A
AlexeyRU, 2012-05-13
@mr_sota

the most reliable - the most unpopular

N
NeverWalkAloner, 2012-05-13
@NeverWalkAloner

The most reliable so far is probably sha-2, after all, the default standard now is hashes from this family.

S
Sergey, 2012-05-13
@butteff

I do it twice by md5, and write the hash back to front in the database

B
barker, 2012-05-13
@barker

The most reliable for what exactly, i.e. at what plan? Reducing the likelihood of collisions or what?

E
Eternalko, 2012-05-13
@Eternalko

Sha 2 and Whirpool are strong.
Personally, I recommend something like this:

salt_hash = hash('sha256', salt_str);
hashing_string = salt_hash .secret_password;
pwd_hash = hash('whirlpool', hashing_String);

F
freem4n, 2012-05-17
@freem4n

The most reliable in the current realities is the one that is the slowest.
hashcat.net/forum/thread-1156.html
"SHA-512(unix) aka butthurt algorithm.
Would be useful for benchmarking, as it's the slowest algo on the planet."

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question