You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
2.0 KiB
92 lines
2.0 KiB
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR) |
|
#pragma warning disable |
|
using System; |
|
|
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities; |
|
|
|
namespace BestHTTP.SecureProtocol.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 : " |
|
+ BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.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(); |
|
v.AddOptional(contentDescription); |
|
v.Add(contentType); |
|
return new DerSequence(v); |
|
} |
|
} |
|
} |
|
#pragma warning restore |
|
#endif
|
|
|