aboutsummaryrefslogtreecommitdiffstats
path: root/signaling-server/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IStreamCipher.as
blob: fbcbf242dac3f60a859d6b51e20ad813ba229580 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
 * 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 {
		
	}
}