summaryrefslogtreecommitdiff
path: root/flash-src/third-party/com/hurlant/crypto/tls/IConnectionState.as
blob: a5f0e11ed195a373dfafb5605c87294fe74cc53c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * IConnectionState
 * 
 * Interface for TLS/SSL Connection states.
 * 
 * See LICENSE.txt for full license information.
 */
package com.hurlant.crypto.tls {
	import flash.utils.ByteArray;
	public interface IConnectionState {
		function decrypt(type:uint, length:uint, p:ByteArray) : ByteArray; 
		function encrypt(type:uint, p:ByteArray) : ByteArray; 
	}
}