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.
15 lines
405 B
15 lines
405 B
1 month ago
|
using System;
|
||
|
|
||
|
using Org.BouncyCastle.Asn1;
|
||
|
using Org.BouncyCastle.Asn1.X509;
|
||
|
|
||
|
namespace Org.BouncyCastle.Tls
|
||
|
{
|
||
|
/// <summary>Object Identifiers associated with TLS extensions.</summary>
|
||
|
public abstract class TlsObjectIdentifiers
|
||
|
{
|
||
|
/// <summary>RFC 7633</summary>
|
||
|
public static readonly DerObjectIdentifier id_pe_tlsfeature = X509ObjectIdentifiers.IdPE.Branch("24");
|
||
|
}
|
||
|
}
|