How to find an algorythm code

  • Thread starter Thread starter Federico Babelis
  • Start date Start date
F

Federico Babelis

Hi:

Any could help my find how to create the code for the following algorythm:

In1: 10000000
In2: 00000000000

the algorythm runs and this is the output:

01A6DC6B07262F69

Any help will be appreciaterd !

Regards,
Federico
 
Federico Babelis said:
Any could help my find how to create the code for the following algorythm:

In1: 10000000
In2: 00000000000

the algorythm runs and this is the output:

01A6DC6B07262F69

Sure, no problem:

__int64 MySuperDuperAlgorithimImplementation(__int64 p1, __int64 p2)
{
if ( (p1 == 0x10000000) && (p2 == 0) )
return 0x01A6DC6B07262F69;

else
return 0;
}

:-)

Cracking something are we? :-)

Regards,
Will
 
Back
Top