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