view dcrypt/crypto/padding/NullByte.d @ 10:cd376996cdb3

Renamed SymmetricCipher back to Cipher (we don't support any other kind atm, I'll deal with it when we do.). Added BlockCipherWrapper for the encryption of arbitrary streams with or without padding. Removed hashByName, and replaced it with createHash. Re-did the high-level API, and filled out Crypto. Added cipher creation via createCipher. Added dsk to the CONTRIBUTORS file for helping with the design of the high-level API.
author Thomas Dixon <reikon@reikon.us>
date Wed, 20 Aug 2008 20:08:07 -0400
parents 0e08791a1418
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.padding.NullByte;

import dcrypt.crypto.BlockCipherPadding; 

/**
 * This class implements Null/Zero byte padding.
 * Ex. [... 0x00, 0x00 ... 0x00]
 */
class NullByte : BlockCipherPadding {
    char[] name() {
        return "NullByte";   
    }
    
    ubyte[] pad(uint len) {
        ubyte[] output = new ubyte[len];
        
        output[0..output.length] = 0;

        return output;
    }
    
    uint unpad(void[] input_) {
        ubyte[] input = cast(ubyte[]) input_;
        
        uint len = input.length;
        while (len-- > 0)
            if (input[len-1] != 0) break;
            
        return (input.length - len);
    }
}