# HG changeset patch # User Thomas Dixon # Date 1231611478 18000 # Node ID 74303a71703259bcd493d33cdb5e9c730906cb79 # Parent ec23779ee7946cf079b2103d592309b1fa9171ac 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. diff -r ec23779ee794 -r 74303a717032 dcrypt/crypto/Crypto.d --- a/dcrypt/crypto/Crypto.d Sat Jan 10 13:15:14 2009 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,51 +0,0 @@ -/** - * This file is part of the dcrypt project. - * - * Copyright: Copyright (C) dcrypt contributors 2008. All rights reserved. - * License: MIT - * Authors: Thomas Dixon - */ - -/** Import _everything_ */ -module dcrypt.crypto.Crypto; - -// Hash functions -public import dcrypt.crypto.Hash; -public import dcrypt.crypto.hashes.MD5; -public import dcrypt.crypto.hashes.SHA1; -public import dcrypt.crypto.hashes.SHA224; -public import dcrypt.crypto.hashes.SHA256; -public import dcrypt.crypto.hashes.SHA384; -public import dcrypt.crypto.hashes.SHA512; - -// Message authentication codes -public import dcrypt.crypto.MAC; -public import dcrypt.crypto.macs.HMAC; - -// Params -public import dcrypt.crypto.params.SymmetricKey; -public import dcrypt.crypto.params.ParametersWithIV; - -// Ciphers -public import dcrypt.crypto.Cipher; -public import dcrypt.crypto.BlockCipher; -public import dcrypt.crypto.StreamCipher; -public import dcrypt.crypto.ManagedBlockCipher; -public import dcrypt.crypto.ciphers.Blowfish; -public import dcrypt.crypto.ciphers.RC6; -public import dcrypt.crypto.ciphers.TEA; -public import dcrypt.crypto.ciphers.XTEA; -public import dcrypt.crypto.ciphers.AES; -public import dcrypt.crypto.ciphers.RC4; - -// Block modes -public import dcrypt.crypto.modes.CBC; -public import dcrypt.crypto.modes.CTR; - -// Block padding -public import dcrypt.crypto.BlockCipherPadding; -public import dcrypt.crypto.padding.NullByte; -public import dcrypt.crypto.padding.X923; -public import dcrypt.crypto.padding.PKCS7; -public import dcrypt.crypto.padding.RFC1321; -