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
567 B
22 lines
567 B
2 months ago
|
using System;
|
||
|
|
||
|
using Org.BouncyCastle.Asn1;
|
||
|
|
||
|
namespace Org.BouncyCastle.Asn1.X509.Qualified
|
||
|
{
|
||
|
public sealed class Rfc3739QCObjectIdentifiers
|
||
|
{
|
||
|
private Rfc3739QCObjectIdentifiers()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
//
|
||
|
// base id
|
||
|
//
|
||
|
public static readonly DerObjectIdentifier IdQcs = new DerObjectIdentifier("1.3.6.1.5.5.7.11");
|
||
|
|
||
|
public static readonly DerObjectIdentifier IdQcsPkixQCSyntaxV1 = new DerObjectIdentifier(IdQcs+".1");
|
||
|
public static readonly DerObjectIdentifier IdQcsPkixQCSyntaxV2 = new DerObjectIdentifier(IdQcs+".2");
|
||
|
}
|
||
|
}
|