Is it possible to run Hashcat on XP
#20
(03-03-2013, 08:22 AM)atom Wrote: I am adding WPA/WPA2 and once its done I will release new version

Thanks for that - I'll just write some C++ while I'm waiting! Wink

Code:
    //See RFC 1321 for details on how MD5Init, MD5Update, and MD5Final
    //calculate a digest for the plain text
    MD5Init( &context );

    //the alternative to these ugly casts is to go into the RFC code and change the declarations
    MD5Update( &context, pszBuffer, nLength );
    MD5Final( digest, &context);

    //make a string version of the numeric digest value

    for ( i = 0; i < 16; i++)
    {
        pszMD5[ p++ ]    = NybbleToHex( (digest[i] >> 4) & 0xf);
        pszMD5[ p++ ]    = NybbleToHex( digest[i] & 0xf);
    }


Messages In This Thread
RE: Is it possible to run Hashcat on XP - by atom - 01-04-2013, 11:27 AM
RE: Is it possible to run Hashcat on XP - by atom - 01-04-2013, 05:21 PM
RE: Is it possible to run Hashcat on XP - by Kuci - 02-09-2013, 01:22 PM
RE: Is it possible to run Hashcat on XP - by atom - 02-09-2013, 06:37 PM
RE: Is it possible to run Hashcat on XP - by Kuci - 02-09-2013, 07:10 PM
RE: Is it possible to run Hashcat on XP - by atom - 02-13-2013, 01:18 PM
RE: Is it possible to run Hashcat on XP - by atom - 03-03-2013, 08:22 AM
RE: Is it possible to run Hashcat on XP - by oldfart - 03-04-2013, 01:23 AM
RE: Is it possible to run Hashcat on XP - by atom - 03-06-2013, 12:03 PM