Answer the question
In order to leave comments, you need to log in
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
The most reliable so far is probably sha-2, after all, the default standard now is hashes from this family.
The most reliable for what exactly, i.e. at what plan? Reducing the likelihood of collisions or what?
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);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question