Files
SuperVPN/output/Libraries/BouncyCastle.Crypto/Org/BouncyCastle/Bcpg/CompressedDataPacket.cs
2025-10-09 09:57:24 +09:00

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();
}
}