view dcrypt/crypto/BlockCipher.d @ 11:02970e63257d

Fix stupid error with using uint instead of int in create*
author Thomas Dixon <reikon@reikon.us>
date Wed, 20 Aug 2008 23:33:02 -0400
parents cd376996cdb3
children 8b5eaf3c2979
line wrap: on
line source

/**
 * This file is part of the dcrypt project.
 *
 * Copyright: Copyright (C) dcrypt contributors 2008. All rights reserved.
 * License:   MIT
 * Authors:   Thomas Dixon
 */
 
module dcrypt.crypto.BlockCipher;

public import dcrypt.crypto.Cipher;
public import dcrypt.crypto.params.SymmetricKey;

/** Interface for a standard block cipher. */
abstract class BlockCipher : Cipher {
    
    /** Returns: The block size in bytes that this cipher will operate on. */
    uint blockSize();
}