Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date: Sun, 7 Apr 2013 19:16:28 +0400
From: Solar Designer <solar@...nwall.com>
To: john-users@...ts.openwall.com
Subject: Re: What am I doing wrong?

On Sun, Apr 07, 2013 at 11:11:42AM -0400, Rich Rumble wrote:
>     charset[i++] = 0x2d;        // Add minus, then

It's slightly cleaner to write simply:

	charset[i++] = '-';

The original DumbForce mode uses hex values for some ASCII codes because
it's set to try almost the entire 8-bit range, skipping only control
characters.

Alexander

Powered by blists - more mailing lists

Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.