PageRenderTime 20ms CodeModel.GetById 16ms 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/TLSSocketEvent.as

http://github.com/onedayitwillmake/RealtimeMultiplayerNodeJs
ActionScript | 26 lines | 13 code | 4 blank | 9 comment | 0 complexity | ea621156c898a0887f08c7060042f5b9 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, MPL-2.0-no-copyleft-exception, BSD-3-Clause
  1. /**
  2. * TLSEvent
  3. *
  4. * This is used by TLSEngine to let the application layer know
  5. * when we're ready for sending, or have received application data
  6. * Copyright (c) 2007 Henri Torgemane
  7. *
  8. * See LICENSE.txt for full license information.
  9. */
  10. package com.hurlant.crypto.tls {
  11. import flash.events.Event;
  12. import flash.utils.ByteArray;
  13. import com.hurlant.crypto.cert.X509Certificate;
  14. public class TLSSocketEvent extends Event {
  15. static public const PROMPT_ACCEPT_CERT:String = "promptAcceptCert";
  16. public var cert:X509Certificate;
  17. public function TLSSocketEvent( cert:X509Certificate = null) {
  18. super(PROMPT_ACCEPT_CERT, false, false);
  19. this.cert = cert;
  20. }
  21. }
  22. }