OTFBrutusGUI Change Log

0.1.0.8    2011-02-27
	Removed the null character from the function to limit the number of duplicated characters in a password section
		This helps to generate passwords with widely varying lengths
		And also, unfortunately, increases the amount of duplicate passwords that get processed by mistake.
	
0.1.0.7    2011-02-26
	Fixed a bug when using the null (\0) character that threw away valid password strings
		(a1|a2|\0){1}(b1|b2){1} should return
			a1b1 a1b2 a2b1 a2b2 b1 b2
		but in v0.1.06 it only returned
			a1b1 a1b2 a2b1 a2b2
		It skipped all password values that started with a null character
0.1.0.6    2011-02-26
	Added \0 to be used as a null character in password pattern generator
		This will generate some duplicate values, as seen in the example below, but it does allow you to generate variable length passwords
		[12\0]{3} will generate
			111 112  11 121 122  12  11  12   1 211 212  21 221 222  22  21  22   2
	Added option to password generator to limit the number of duplicated characters in a password section
		[12\0]{3:2} will generate a 3 character password with a max of 2 duplicated characters
			    112  11 121 122  12  11  12   1 211 212  21 221      22  21  22   2
	Added Fileoverwrite confirmation to Save Word List

0.1.0.5    2010-12-19
	Slightly increase speed of saving custom password pattern to a word list file
	Added associated Drive Letter to Select Devices Dialog
	Added code to compile x86 (32 bit) and x64 (64 bit) versions.
		RipeMD, SHA512 and SHA1 are 12-15% faster on a Dual XEON X5550 but Whirlpool is 12% slower

0.1.0.4    2010-12-14
	Added the ability to save the custom password pattern to a word list file

0.1.0.3    2010-12-13
	Fix Select Devices Dialog to correctly read GPT formatted parition tables

0.1.0.2    2010-12-12
	Added Select Devices Button and Dialog
	Added days calculation to time left and elapsed
	Significantly sped up counting of dictionary words
	Fixed some bugs with start and end index
	Some bugs fixed with time elapsed/remaing calculation
	Added hidden (source code only) option to use Crypto++ or TrueCrypt PKCS methods

0.1.0.0    2010-12-11
	Initial Release