fatal error: Internal error: get_rule_number().

Started by Grincheux, February 22, 2017, 02:47:03 PM

Previous topic - Next topic

Grincheux

What does it mean?

int C08_FindPassword_01(LPHACK __lpHack)
{
register LPSTR _lpszPassword ;
register LPSTR _lpszAlphabet_1 ;
int _bRes ;

sph_md5_context _Md5_Context, *_lpMd5_Context ;

_bRes = FALSE ;
__stosq((unsigned long long *) __lpHack,0,sizeof(HACK) / sizeof(unsigned long long)) ;

_lpszPassword = __lpHack->szPassword ;
_lpMd5_Context = &_Md5_Context ;

sph_md5_init(_lpMd5_Context) ;

#pragma omp parallel private(_bRes)

_lpszAlphabet_1 = szAlphabet_08_1 ;

while(*_lpszAlphabet_1)
{
if(bEmergency) break ;

*_lpszPassword = *_lpszAlphabet_1++ ;

sph_md5(_lpMd5_Context,_lpszPassword,1) ;
sph_md5_close(_lpMd5_Context,(void *) __lpHack->cMd5) ;

if(memcmp(C08_InitialHash,__lpHack->cMd5,16) == 0)
{
_bRes = TRUE ;
break ;
}
}

return (_bRes) ;
}


I got this message while compiling in Debug Mode (No optimisation).

Grincheux