summaryrefslogtreecommitdiff
path: root/flash-src/third-party/com/hurlant/crypto/tls/IConnectionState.as
diff options
context:
space:
mode:
Diffstat (limited to 'flash-src/third-party/com/hurlant/crypto/tls/IConnectionState.as')
-rw-r--r--flash-src/third-party/com/hurlant/crypto/tls/IConnectionState.as14
1 files changed, 14 insertions, 0 deletions
diff --git a/flash-src/third-party/com/hurlant/crypto/tls/IConnectionState.as b/flash-src/third-party/com/hurlant/crypto/tls/IConnectionState.as
new file mode 100644
index 0000000..a5f0e11
--- /dev/null
+++ b/flash-src/third-party/com/hurlant/crypto/tls/IConnectionState.as
@@ -0,0 +1,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;
+ }
+} \ No newline at end of file