comparison dcrypt/crypto/Crypto.d @ 9:29b910949588

Minor edit of Crypto class to make the lib actually compile.
author Thomas Dixon <reikon@reikon.us>
date Mon, 18 Aug 2008 01:19:18 -0400
parents 0e08791a1418
children cd376996cdb3
comparison
equal deleted inserted replaced
8:23c62e28b3a4 9:29b910949588
6 * Authors: Thomas Dixon 6 * Authors: Thomas Dixon
7 */ 7 */
8 8
9 module dcrypt.crypto.Crypto; 9 module dcrypt.crypto.Crypto;
10 10
11 import dcrypt.crypto.Cipher; 11 import dcrypt.crypto.SymmetricCipher;
12 12
13 import dcrypt.misc.Util; 13 import dcrypt.misc.Util;
14 14
15 // Hash functions 15 // Hash functions
16 public import dcrypt.crypto.Hash; 16 public import dcrypt.crypto.Hash;