log

age author description
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.