Notepad is your friend 
After formating and converting "C"
Code:
ntEmp1 = (((nrAndom1 % 100 ) / 10 ) * 100000 ) +
(((nrAndom1 % 10 ) / 1 ) * 10000 ) +
(((nrAndom1 % 1000000 ) / 100000 ) * 1000 ) +
(((nrAndom1 % 10000 ) / 1000 ) * 100 ) +
(((nrAndom1 % 100000 ) / 10000 ) * 10 ) +
(((nrAndom1 % 1000 ) / 100 ) * 1 )
ntEmp2 = (((nrAndom2 % 100 ) / 10 ) * 100000 ) +
(((nrAndom2 % 10 ) / 1 ) * 10000 ) +
(((nrAndom2 % 1000000 ) / 100000 ) * 1000 ) +
(((nrAndom2 % 10000 ) / 1000 ) * 100 ) +
(((nrAndom2 % 100000 ) / 10000 ) * 10 ) +
(((nrAndom2 % 1000 ) / 100 ) * 1 )
nrEsult = nrAndom1 + nrAndom2 + ntEmp1 + ntEmp2
and nrEsult is your password
--------------------------------------------------------------
Code:
so, if nrAndom1 is
[(x5)(x4)(x3)(x2)(x1)(x0)]
and nrAndom2 is
[(y5)(y4)(y3)(y2)(y1)(y0)]
then password is
[(x5)(x4)(x3)(x2)(x1)(x0)] + [(x1)(x0)(x5)(x3)(x4)(x2)] +
[(y5)(y4)(y3)(y2)(y1)(y0)] + [(y1)(y0)(y5)(y3)(y4)(y2)]
for example if
random1 543210
random2 109876
then password is
543210 + 105342 +
109876 + 761908 = 1520336
Strejda
Bookmarks