#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crmf
{
///
/// Generic interface for a CertificateRequestMessage control value.
///
public interface IControl
{
///
/// Return the type of this control.
///
DerObjectIdentifier Type { get; }
///
/// Return the value contained in this control object.
///
Asn1Encodable Value { get; }
}
}
#pragma warning restore
#endif