Including the node_modules folder for socket.io code.
[KiwiIRC.git] / node / node_modules / socket.io-client / lib / vendor / web-socket-js / flash-src / com / hurlant / crypto / tls / IConnectionState.as
1 /**
2 * IConnectionState
3 *
4 * Interface for TLS/SSL Connection states.
5 *
6 * See LICENSE.txt for full license information.
7 */
8 package com.hurlant.crypto.tls {
9 import flash.utils.ByteArray;
10 public interface IConnectionState {
11 function decrypt(type:uint, length:uint, p:ByteArray) : ByteArray;
12 function encrypt(type:uint, p:ByteArray) : ByteArray;
13 }
14 }