view dcrypt/crypto/padding/X923.d @ 28:ad687db713a4

Further reworked the code for hash padding. Replaced all instances of 'char[]' with 'string' and removed a few 'const' modifiers as per Glenn Haecker's patch for D2 compatibility. Updated CONTRIBUTORS file.
author Thomas Dixon <reikon@reikon.us>
date Sun, 10 May 2009 22:38:48 -0400
parents 8b5eaf3c2979
children
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.padding.X923;

import dcrypt.crypto.BlockCipherPadding; 

/**
 * This class implements the Null/Zero byte padding described in ANSI X.923.
 * Ex. [... 0x00, 0x00, 0x03]
 */
class X923 : BlockCipherPadding
{
    string name()
    {
        return "X923";   
    }
    
    /* Assumes input_ is a multiple of the underlying
     * block cipher's block size.
     */
    ubyte[] pad(uint len)
    {
        ubyte[] output = new ubyte[len];
        
        output[0..len-1] = 0;
        output[output.length-1] = cast(ubyte)len;

        return output;
    }
    
    uint unpad(void[] input_)
    {
        ubyte[] input = cast(ubyte[]) input_;
        
        ubyte len = input[input.length-1];
         
        if (len > input.length || len == 0)
            throw new InvalidPaddingError(name()~": Incorrect padding.");
            
        return len;
    }
}