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.
33 lines
925 B
33 lines
925 B
1 year ago
|
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||
|
#pragma warning disable
|
||
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509
|
||
|
{
|
||
|
/**
|
||
|
* PolicyQualifierId, used in the CertificatePolicies
|
||
|
* X509V3 extension.
|
||
|
*
|
||
|
* <pre>
|
||
|
* id-qt OBJECT IDENTIFIER ::= { id-pkix 2 }
|
||
|
* id-qt-cps OBJECT IDENTIFIER ::= { id-qt 1 }
|
||
|
* id-qt-unotice OBJECT IDENTIFIER ::= { id-qt 2 }
|
||
|
* PolicyQualifierId ::=
|
||
|
* OBJECT IDENTIFIER ( id-qt-cps | id-qt-unotice )
|
||
|
* </pre>
|
||
|
*/
|
||
|
public sealed class PolicyQualifierID : DerObjectIdentifier
|
||
|
{
|
||
|
private const string IdQt = "1.3.6.1.5.5.7.2";
|
||
|
|
||
|
private PolicyQualifierID(
|
||
|
string id)
|
||
|
: base(id)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public static readonly PolicyQualifierID IdQtCps = new PolicyQualifierID(IdQt + ".1");
|
||
|
public static readonly PolicyQualifierID IdQtUnotice = new PolicyQualifierID(IdQt + ".2");
|
||
|
}
|
||
|
}
|
||
|
#pragma warning restore
|
||
|
#endif
|