15 lines
339 B
C#
15 lines
339 B
C#
namespace Org.BouncyCastle.Bcpg;
|
|
|
|
public class CompressedDataPacket : InputStreamPacket
|
|
{
|
|
private readonly CompressionAlgorithmTag algorithm;
|
|
|
|
public CompressionAlgorithmTag Algorithm => algorithm;
|
|
|
|
internal CompressedDataPacket(BcpgInputStream bcpgIn)
|
|
: base(bcpgIn)
|
|
{
|
|
algorithm = (CompressionAlgorithmTag)bcpgIn.ReadByte();
|
|
}
|
|
}
|