|
Because is not to easy to implement the sha256 to VB .NET here is the algo:
1. Get the name and make a sha256 from it.
2. Make a function that:
Declare a counter ECX = 0
Declare result EAX = 0
Move in a variable (EBX) every byte of the array.
EBX = EBX*ECX
EBX = EBX*EBX
EBX = EBX + 50h
EAX = EAX+EBX
ECX = ECX+1
Loop until the bytes in the array ends.
The result will be xorred with 12345678h
|