using System;
using Org.BouncyCastle.Asn1;
namespace 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; }
}
}