add all
This commit is contained in:
28
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/bcpg/CompressedDataPacket.cs
vendored
Normal file
28
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/bcpg/CompressedDataPacket.cs
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System.IO;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Bcpg
|
||||
{
|
||||
/// <remarks>Generic compressed data object.</remarks>
|
||||
public class CompressedDataPacket
|
||||
: InputStreamPacket
|
||||
{
|
||||
private readonly CompressionAlgorithmTag algorithm;
|
||||
|
||||
internal CompressedDataPacket(
|
||||
BcpgInputStream bcpgIn)
|
||||
: base(bcpgIn)
|
||||
{
|
||||
this.algorithm = (CompressionAlgorithmTag) bcpgIn.ReadByte();
|
||||
}
|
||||
|
||||
/// <summary>The algorithm tag value.</summary>
|
||||
public CompressionAlgorithmTag Algorithm
|
||||
{
|
||||
get { return algorithm; }
|
||||
}
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user