Sha256: de3b2af4c3cee15ec0c2181118fbda2f781c88edb656c61d44934013aa6de3ea
Contents?: true
Size: 374 Bytes
Versions: 19
Compression:
Stored size: 374 Bytes
Contents
/** * 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; } }
Version data entries
19 entries across 19 versions & 4 rubygems