log dcrypt/crypto/ciphers/Blowfish.d @ 21:ec23779ee794

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.
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.
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.
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:43:22 -0400 Thomas Dixon Minor edits to the unittests of hash functions and ciphers. Added AES and test vectors.
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).