view dcrypt/crypto/MAC.d @ 32:2b4bccdc8387

Added version() statements to play nice with D2's current feelings about const. Changed a few methods (addEntropy and read in the base PRNG class, and the constructor for ParametersWithIV) to accept void[] in place of ubyte[].
author Thomas Dixon <reikon@reikon.us>
date Tue, 12 May 2009 22:09:33 -0400
parents b9ba770b8f16
children b9f8aa42a547
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.MAC;

public import dcrypt.crypto.params.CipherParameters;
public import dcrypt.crypto.params.SymmetricKey;
public import dcrypt.crypto.errors.InvalidParameterError;
import dcrypt.misc.ByteConverter;

/** Base MAC class */
abstract class MAC
{
    /**
     * Initialize a MAC.
     * 
     * Params:
     *     params  = Parameters to be passed to the MAC. (Key, etc.)
     */
    void init(CipherParameters params);
    
    /**
     * Introduce data into the MAC.
     * 
     * Params:
     *     input_ = Data to be processed.
     */
    void update(void[] input_);
    
    /** Play nice with D2's idea of const. */
    version (D_Version2)
    {
        void update(string input_)
        {
            update(cast(ubyte[])input_);
        }
    }
    
    /** Returns: The name of this MAC. */
    string name();
    
    /** Reset MAC to its state immediately subsequent the last init. */
    void reset();
    
    /** Returns: The block size in bytes that this MAC will operate on. */
    uint blockSize();
    
    /** Returns: The output size of the MAC in bytes. */
    uint macSize();
    
    /** Returns: The computed MAC. */
    ubyte[] digest();
    
    /** Returns: The computed MAC in hexadecimal. */
    char[] hexDigest()
    {
        return ByteConverter.hexEncode(digest());
    }
}