NO

Author Topic: fatal error: Internal error: get_rule_number().  (Read 1943 times)

Grincheux

  • Guest
fatal error: Internal error: get_rule_number().
« on: February 22, 2017, 02:47:03 PM »
What does it mean?

Code: [Select]
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).
« Last Edit: February 22, 2017, 02:51:21 PM by Grincheux »

Grincheux

  • Guest
Re: fatal error: Internal error: get_rule_number().
« Reply #1 on: February 23, 2017, 01:26:38 PM »
This problem only arrives in debug mode.