log

age author description
Thu, 14 May 2009 17:46:46 -0400 Thomas Dixon Added tag 0.1 for changeset 6b2c35b84186 default tip
Thu, 14 May 2009 17:46:11 -0400 Thomas Dixon Removed a D2 version statement from the BlockCipherPadding class. Minor consistency correction to the PKCS7 class. Glenn Haecker reports dcrypt now compiles successfully with D2. 0.1
Thu, 14 May 2009 05:31:58 -0400 Thomas Dixon Added additional overrides to Adler32 and CRC32 in dcrypt.misc.checksums in further hopes of D2 compatibility.
Thu, 14 May 2009 01:33:11 -0400 Thomas Dixon More changes suggested by Glenn Haecker for D2 compatibility.
Tue, 12 May 2009 22:09:33 -0400 Thomas Dixon Added version() statements to play nice with D2's current feelings about const. Changed a few methods (addEntropy and read in the base PRNG class, and the constructor for ParametersWithIV) to accept void[] in place of ubyte[].
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.
Sat, 09 May 2009 23:29:20 -0400 Thomas Dixon Fixed error in hash message padding reported by Glenn Haecker.
Sun, 01 Mar 2009 13:06:48 -0500 Thomas Dixon Implemented MD4. Refactored MD5. Replaced all instances of 'version (UnitTest)' with 'debug (UnitTest)'.
Thu, 19 Feb 2009 19:35:43 -0500 Thomas Dixon Implemented ChaCha. Modified Salsa20 to simplify the implementation of ChaCha.
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.
Sat, 10 Jan 2009 13:17:58 -0500 Thomas Dixon Removed dcrypt.crypto.Crypto. There was no use for it at this time beyond using it to import everything, which would just result in bloat.