1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- #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
|