15b44600cb0f32739a1fe0b769a59d9e9642e287
A hash consists of 40 characters, and how to determine its encryption algorithm? And is it even possible to know its original value?
15b44600cb0f32739a1fe0b769a59d9e9642e287
A hash consists of 40 characters, and how to determine its encryption algorithm? And is it even possible to know its original value?
How to determine its encryption algorithm
The essence of the hash function is to get the value of the function y = f(x)
such that, having "y"
, it is impossible to recognize the "х"
. Therefore, the task itself of finding the "x"
by "y"
rather complicated, because, as colleagues have already noted, there is no guarantee that the output of the function will not have the same value for two different "x"
.
You can and even as you can. It all depends on many factors, if the hash is compiled without salting and without reusing hashing (that is, hash from hash) and the algorithm is more or less known such as SHA-1 or MD5, then it is quite possible to split it in a couple of days. Take a look at the anti -forum forum - there are even contests for opening hashes.
Try the Hash Identifier utility. For me, determined in 100% of cases.
Source: https://ru.stackoverflow.com/questions/80540/
All Articles