I am performing a security assessment against an application, i would like to recognize the encryption function used to generate the following hash
PWYXFYNRWTYZ HVZPVPMBBFPB VXTCHXMHPKVH
As shown above, the hashs are 12 byte alphabets
Regards
I am performing a security assessment against an application, i would like to recognize the encryption function used to generate the following hash
PWYXFYNRWTYZ HVZPVPMBBFPB VXTCHXMHPKVH
As shown above, the hashs are 12 byte alphabets
Regards
It's not clear whether each of the three values that you posted is a result of the hash function in question, or the result of the hash function is all three values concatenated together.
However, it looks like the each of the values that you posted are 55 bits long. Each of them are made of 12 English uppercase letters. There are 26 uppercase letters in the English alphabet, so this means that there are 2.54*10^16 (26^12 = 2.54*10^16) possible such combinations. The equivalent number of bits needed to produce this number of combinations is 55 (2^55 = 3.60*10^16).
Most modern hash functions produce results that are much longer than 55 bits in length (e.g. even the obsolete MD5 hash function produces 128-bit results). See https://en.wikipedia.org/wiki/List_of_hash_functions, which shows the length of the results produced by various hash functions. So, my guess is that the result of the hash function in question is all three of the values that you posted concatenated together.
If that's the case, then this means the result is 165 bits in length (55*3=165). So, it's possible that this could be RIPEMD-160 (160 bits) or MD5 (128 bits), or several others referenced at the link above.
PWYXFYNRWTYZ 1567372064 HVZPVPMBBFPB 1567374207 VXTCHXMHPKVH 1567374806
But i can't figure out the hash algorithm
– Albert Masouni Sep 02 '19 at 13:45