/js/lib/Socket.IO-node/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IPad.as
ActionScript | 32 lines | 10 code | 1 blank | 21 comment | 0 complexity | 2cd0c56b3f0bcffc4629234d0cc57def MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, MPL-2.0-no-copyleft-exception, BSD-3-Clause
- /**
- * 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;
- }
- }