blob: f61bf0df890c9717d7cba6851b3f2ab2f3eb4219 (
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
81
82
83
84
85
86
87
88
|
using System;
using Org.BouncyCastle.Utilities;
namespace Org.BouncyCastle.Asn1.Ess
{
public class ContentHints
: Asn1Encodable
{
private readonly DerUtf8String contentDescription;
private readonly DerObjectIdentifier contentType;
public static ContentHints GetInstance(
object o)
{
if (o == null || o is ContentHints)
{
return (ContentHints)o;
}
if (o is Asn1Sequence)
{
return new ContentHints((Asn1Sequence)o);
}
throw new ArgumentException("unknown object in 'ContentHints' factory : "
+ Platform.GetTypeName(o) + ".");
}
/**
* constructor
*/
private ContentHints(
Asn1Sequence seq)
{
IAsn1Convertible field = seq[0];
if (field.ToAsn1Object() is DerUtf8String)
{
contentDescription = DerUtf8String.GetInstance(field);
contentType = DerObjectIdentifier.GetInstance(seq[1]);
}
else
{
contentType = DerObjectIdentifier.GetInstance(seq[0]);
}
}
public ContentHints(
DerObjectIdentifier contentType)
{
this.contentType = contentType;
this.contentDescription = null;
}
public ContentHints(
DerObjectIdentifier contentType,
DerUtf8String contentDescription)
{
this.contentType = contentType;
this.contentDescription = contentDescription;
}
public DerObjectIdentifier ContentType
{
get { return contentType; }
}
public DerUtf8String ContentDescription
{
get { return contentDescription; }
}
/**
* <pre>
* ContentHints ::= SEQUENCE {
* contentDescription UTF8String (SIZE (1..MAX)) OPTIONAL,
* contentType ContentType }
* </pre>
*/
public override Asn1Object ToAsn1Object()
{
Asn1EncodableVector v = new Asn1EncodableVector(2);
v.AddOptional(contentDescription);
v.Add(contentType);
return new DerSequence(v);
}
}
}
|