⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 istreamcipher.as

📁 As3 Crypto is a cryptography library written in Actionscript 3 that provides several common algorith
💻 AS
字号:
/**
 * IStreamCipher
 * 
 * A "marker" interface for stream ciphers.
 * Copyright (c) 2007 Henri Torgemane
 * 
 * See LICENSE.txt for full license information.
 */
package com.hurlant.crypto.symmetric {
	
	/**
	 * A marker to indicate how this cipher works.
	 * A stream cipher:
	 * - does not use initialization vector
	 * - keeps some internal state between calls to encrypt() and decrypt()
	 * 
	 */
	public interface IStreamCipher extends ICipher {
		
	}
}

⌨️ 快捷键说明

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