Sha256: c65ce1b53f7d33724ce33029d839d4f5c684910d5ae16f92204944b9ba384d35
Contents?: true
Size: 726 Bytes
Versions: 19
Compression:
Stored size: 726 Bytes
Contents
/** * TLSEvent * * This is used by TLSEngine to let the application layer know * when we're ready for sending, or have received application data * Copyright (c) 2007 Henri Torgemane * * See LICENSE.txt for full license information. */ package com.hurlant.crypto.tls { import flash.events.Event; import flash.utils.ByteArray; public class TLSEvent extends Event { static public const DATA:String = "data"; static public const READY:String = "ready"; static public const PROMPT_ACCEPT_CERT:String = "promptAcceptCert"; public var data:ByteArray; public function TLSEvent(type:String, data:ByteArray = null) { this.data = data; super(type, false, false); } } }
Version data entries
19 entries across 19 versions & 4 rubygems