/flash-src/third-party/com/hurlant/crypto/tls/IConnectionState.as
http://github.com/gimite/web-socket-js · ActionScript · 14 lines · 7 code · 0 blank · 7 comment · 0 complexity · d7fd97b9bce831fde2e7dc47276b7a10 MD5 · raw file
- /**
- * 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;
- }
- }