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.
22 lines
511 B
22 lines
511 B
using System;
|
|
|
|
using Org.BouncyCastle.Asn1;
|
|
|
|
namespace Org.BouncyCastle.Crmf
|
|
{
|
|
/// <summary>
|
|
/// Generic interface for a CertificateRequestMessage control value.
|
|
/// </summary>
|
|
public interface IControl
|
|
{
|
|
/// <summary>
|
|
/// Return the type of this control.
|
|
/// </summary>
|
|
DerObjectIdentifier Type { get; }
|
|
|
|
/// <summary>
|
|
/// Return the value contained in this control object.
|
|
/// </summary>
|
|
Asn1Encodable Value { get; }
|
|
}
|
|
}
|
|
|