summary refs log tree commit diff
path: root/crypto/src/asn1/ess/ContentHints.cs
blob: a430fea8d852591832e05c78863c46361b041c7a (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
89
90
91
92
using System;

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 : "
				+ o.GetType().Name + ".");
		}

		/**
		 * 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();

			if (contentDescription != null)
			{
				v.Add(contentDescription);
			}

			v.Add(contentType);

			return new DerSequence(v);
		}
	}
}