28 lines
772 B
C#
28 lines
772 B
C#
using System;
|
|
|
|
using Org.BouncyCastle.Asn1;
|
|
using Org.BouncyCastle.Utilities.Collections;
|
|
|
|
namespace Org.BouncyCastle.X509
|
|
{
|
|
public interface IX509Extension
|
|
{
|
|
/// <summary>
|
|
/// Get all critical extension values, by oid
|
|
/// </summary>
|
|
/// <returns>IDictionary with DerObjectIdentifier keys and Asn1OctetString values</returns>
|
|
ISet GetCriticalExtensionOids();
|
|
|
|
/// <summary>
|
|
/// Get all non-critical extension values, by oid
|
|
/// </summary>
|
|
/// <returns>IDictionary with DerObjectIdentifier keys and Asn1OctetString values</returns>
|
|
ISet GetNonCriticalExtensionOids();
|
|
|
|
[Obsolete("Use version taking a DerObjectIdentifier instead")]
|
|
Asn1OctetString GetExtensionValue(string oid);
|
|
|
|
Asn1OctetString GetExtensionValue(DerObjectIdentifier oid);
|
|
}
|
|
}
|