blob: 5ae71708d7fc353febf1fde698faca82c0ba1d6b (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
using System;
using Org.BouncyCastle.Asn1.X509;
namespace Org.BouncyCastle.Asn1.Cms
{
/**
* RFC 3274 - CMS Compressed Data.
* <pre>
* CompressedData ::= Sequence {
* version CMSVersion,
* compressionAlgorithm CompressionAlgorithmIdentifier,
* encapContentInfo EncapsulatedContentInfo
* }
* </pre>
*/
public class CompressedData
: Asn1Encodable
{
public static CompressedData GetInstance(object obj)
{
if (obj == null)
return null;
if (obj is CompressedData compressedData)
return compressedData;
#pragma warning disable CS0618 // Type or member is obsolete
return new CompressedData(Asn1Sequence.GetInstance(obj));
#pragma warning restore CS0618 // Type or member is obsolete
}
public static CompressedData GetInstance(Asn1TaggedObject ato, bool explicitly)
{
#pragma warning disable CS0618 // Type or member is obsolete
return new CompressedData(Asn1Sequence.GetInstance(ato, explicitly));
#pragma warning restore CS0618 // Type or member is obsolete
}
private DerInteger version;
private AlgorithmIdentifier compressionAlgorithm;
private ContentInfo encapContentInfo;
public CompressedData(
AlgorithmIdentifier compressionAlgorithm,
ContentInfo encapContentInfo)
{
this.version = DerInteger.Zero;
this.compressionAlgorithm = compressionAlgorithm;
this.encapContentInfo = encapContentInfo;
}
[Obsolete("Use 'GetInstance' instead")]
public CompressedData(
Asn1Sequence seq)
{
this.version = (DerInteger) seq[0];
this.compressionAlgorithm = AlgorithmIdentifier.GetInstance(seq[1]);
this.encapContentInfo = ContentInfo.GetInstance(seq[2]);
}
public DerInteger Version
{
get { return version; }
}
public AlgorithmIdentifier CompressionAlgorithmIdentifier
{
get { return compressionAlgorithm; }
}
public ContentInfo EncapContentInfo
{
get { return encapContentInfo; }
}
public override Asn1Object ToAsn1Object()
{
return new BerSequence(version, compressionAlgorithm, encapContentInfo);
}
}
}
|