I need help to recognize hash!!

Videlavive

Active member
Feedback: 0 / 0 / 0
Joined
Feb 16, 2021
Messages
299
Reaction score
31
Credits
2,440
Hi, I need to know what hash it is and how to break it.

I have source code of the app:



byte[] src = Convert.FromBase64String(hashedPassword);
if ((src.Length != 0x31) || (src[0] != 0))
{
return false;
}
byte[] dst = new byte[0x10];
Buffer.BlockCopy(src, 1, dst, 0, 0x10);
byte[] buffer3 = new byte[0x20];
Buffer.BlockCopy(src, 0x11, buffer3, 0, 0x20);
using (var bytes = new Rfc2898DeriveBytes(password, dst, 0x3e8))
{
buffer4 = bytes.GetBytes(0x20);
}


Example: AGwlEJSMhhkV4GEKKp7XuiMnIdbguHIXxW9exbeWG1A1/sc6bLa6xi6Pnuq/D3YBgg==
AO6XVqkvV6+y0FNEuf/dPlnG8VXJ2aJCZG65JLV5rKZEQPOpqUeiRxgJfXOPKnPdiA==




I thank you very much!!
 

Attachments

  • hashes.txt
    78.5 KB · Views: 5
Top