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.
Sat, 10 Jan 2009 13:15:14 -0500 Thomas Dixon Removed redundant test vector from Blowfish unittest.
Fri, 09 Jan 2009 01:24:45 -0500 Thomas Dixon Fixed bug which prevented Blowfish from resetting correctly.
Wed, 19 Nov 2008 19:48:31 -0500 Thomas Dixon Added tag 0.1b for changeset ff41a391e7b1
Wed, 19 Nov 2008 19:48:09 -0500 Thomas Dixon Removed tag 01.b 0.1b
Wed, 19 Nov 2008 19:47:02 -0500 Thomas Dixon Added tag 01.b for changeset 703901987976
Wed, 19 Nov 2008 19:44:44 -0500 Thomas Dixon Removed default of SHA256 for PRNGFromHash.
Wed, 19 Nov 2008 19:30:52 -0500 Thomas Dixon Added LimitReachedError and PBKDF2. Fixed some errors with the previous commit in PRNGFromHash, etc. Re-implemented HMAC. Changed the name() format of HMAC and PBKDF2.
Tue, 18 Nov 2008 18:03:40 -0500 Thomas Dixon Removed some redundancy in code. Added NotSupportedError, a base PRNG class and a class which creates a PRNG from a hash function. Changed the MAC class' finalization methods to digest and hexDigest instead of finish and hexFinish respectively. Also added a base Checksum class, crc32 and adler32 in dcrypt.misc as per request.
Fri, 12 Sep 2008 05:20:43 -0400 Thomas Dixon Fixed two errors in ManagedBlockCipher where inputs equal to the block size of the cipher would cause a bounds error and incorrect output of finishOutputSize respectively.
Sat, 30 Aug 2008 14:38:23 -0400 Thomas Dixon Added ManagedBlockCipher, changed Crypto to just import everything, made Hash.update() return itself (for chaining) and ditched BlockCipherWrapper.
Wed, 20 Aug 2008 23:33:02 -0400 Thomas Dixon Fix stupid error with using uint instead of int in create*
Wed, 20 Aug 2008 20:08:07 -0400 Thomas Dixon Renamed SymmetricCipher back to Cipher (we don't support any other kind atm, I'll deal with it when we do.). Added BlockCipherWrapper for the encryption of arbitrary streams with or without padding. Removed hashByName, and replaced it with createHash. Re-did the high-level API, and filled out Crypto. Added cipher creation via createCipher. Added dsk to the CONTRIBUTORS file for helping with the design of the high-level API.
Mon, 18 Aug 2008 01:19:18 -0400 Thomas Dixon Minor edit of Crypto class to make the lib actually compile.
Mon, 18 Aug 2008 01:14:37 -0400 Thomas Dixon Reworked symmetric cipher classes to have SymmetricCipher as their superclass, and follow the general interface of init(), process(), etc. Made sure everything still passed test vectors. Removed Cipher class. I'll worry about that shit when we support something other than symmetric ciphers.
Sat, 16 Aug 2008 22:55:38 -0400 Thomas Dixon Minor edit to AES.
Sat, 16 Aug 2008 22:43:22 -0400 Thomas Dixon Minor edits to the unittests of hash functions and ciphers. Added AES and test vectors.
Thu, 14 Aug 2008 23:51:56 -0400 Thomas Dixon Removed update(ubyte x) from Hash class. Rewrote hash function padding. Updated hash functions to use ulong counter for bytes (was previously uint).
Thu, 14 Aug 2008 01:45:24 -0400 Thomas Dixon Added MAC base class and HMAC. Added StreamCipherWrapper as part of the work on the high-level cipher API. Running on fumes, so hopefully there isn't too much stupid mixed into the code.
Thu, 14 Aug 2008 01:13:26 -0400 Thomas Dixon Fixed error in hash copy() functions where I forgot to copy the length of the message. Now, twice as jank! =)
Wed, 13 Aug 2008 22:01:19 -0400 Thomas Dixon Added copy() to hash functions. Modified some code style.
Tue, 12 Aug 2008 05:48:06 -0400 Thomas Dixon Added Blowfish with test vectors. Minor cleanup of other cipher classes (should probably clean more). Continued work on high-level cipher API (didn't get very far).
Sun, 10 Aug 2008 14:20:17 -0400 Thomas Dixon Initial import.