ipad.as

来自「As3 Crypto is a cryptography library wri」· AS 代码 · 共 32 行

AS
32
字号
/**
 * 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;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?