Initial Commit
This commit is contained in:
24
iTechSharp/srcbc/bcpg/CompressedDataPacket.cs
Normal file
24
iTechSharp/srcbc/bcpg/CompressedDataPacket.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System.IO;
|
||||
|
||||
namespace 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; }
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user