Sha256: d7bfc2f3bd1ec72f6a3403f0777550cb89c4c34fd3287a426d5adce00ff0919f
Contents?: true
Size: 654 Bytes
Versions: 19
Compression:
Stored size: 654 Bytes
Contents
/** * IPad * * An interface for padding mechanisms to implement. * Copyright (c) 2007 Henri Torgemane * * See LICENSE.txt for full license information. */ package com.hurlant.crypto.symmetric { import flash.utils.ByteArray; /** * Tiny interface that represents a padding mechanism. */ public interface IPad { /** * Add padding to the array */ function pad(a:ByteArray):void; /** * Remove padding from the array. * @throws Error if the padding is invalid. */ function unpad(a:ByteArray):void; /** * Set the blockSize to work on */ function setBlockSize(bs:uint):void; } }
Version data entries
19 entries across 19 versions & 4 rubygems