PageRenderTime 190ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/js/lib/Socket.IO-node/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/IConnectionState.as

http://github.com/onedayitwillmake/RealtimeMultiplayerNodeJs
ActionScript | 14 lines | 7 code | 0 blank | 7 comment | 0 complexity | d7fd97b9bce831fde2e7dc47276b7a10 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, MPL-2.0-no-copyleft-exception, BSD-3-Clause
  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. }