log dcrypt/misc/ByteConverter.d @ 31:f429c5e9dd69

age author description
Tue, 12 May 2009 17:10:47 -0400 Thomas Dixon hexDecode in dcrypt.misc.ByteConverter now converts all input to lowercase prior to processing.
Mon, 11 May 2009 15:32:00 -0400 Thomas Dixon Changed Hash's update method to a more optimized variant. Changed the code style for the entire misc package (completely forgot about it). Further changes for D2 compatibility. It appears as if full compatibility won't be possibledue to D2's handling of void[], but the number of changes to obtain compatibility can be minimized in the least.
Mon, 11 May 2009 01:39:19 -0400 Thomas Dixon Second go at D2 compatibility. Changed the hexEncode method of the ByteConverter class and the hexDigest methods of various classes to return char[] instead of string.
Sun, 10 May 2009 22:38:48 -0400 Thomas Dixon Further reworked the code for hash padding. Replaced all instances of 'char[]' with 'string' and removed a few 'const' modifiers as per Glenn Haecker's patch for D2 compatibility. Updated CONTRIBUTORS file.
Thu, 19 Feb 2009 14:45:13 -0500 Thomas Dixon Implemented Salsa20. Added some error checking to RC4's returnByte. Fixed copyright year in Bitwise.d and ByteConverter.d. Added Robert Smith to contributors file. Thanks buddy :)
Sat, 14 Feb 2009 19:58:20 -0500 Thomas Dixon Replaced dcrypt.crypto.Util with dcrypt.misc.Bitwise and dcrypt.misc.ByteConverter. Altered all dependent files to reflect changes.