blob: 2432825ebac67fc2e9cea42d310a5a5a3bcbe432 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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; }
}
}
}
|