init commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user