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.
27 lines
758 B
27 lines
758 B
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 string (OID) keys and Asn1OctetString values</returns>
|
|
ISet GetCriticalExtensionOids();
|
|
|
|
/// <summary>
|
|
/// Get all non-critical extension values, by oid
|
|
/// </summary>
|
|
/// <returns>IDictionary with string (OID) keys and Asn1OctetString values</returns>
|
|
ISet GetNonCriticalExtensionOids();
|
|
|
|
[Obsolete("Use version taking a DerObjectIdentifier instead")]
|
|
Asn1OctetString GetExtensionValue(string oid);
|
|
|
|
Asn1OctetString GetExtensionValue(DerObjectIdentifier oid);
|
|
}
|
|
}
|
|
|