TlsObjectIdentifiers.cs 599 B

123456789101112131415161718
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1;
  5. using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509;
  6. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Tls
  7. {
  8. /// <summary>Object Identifiers associated with TLS extensions.</summary>
  9. public abstract class TlsObjectIdentifiers
  10. {
  11. /// <summary>RFC 7633</summary>
  12. public static readonly DerObjectIdentifier id_pe_tlsfeature = X509ObjectIdentifiers.IdPE.Branch("24");
  13. }
  14. }
  15. #pragma warning restore
  16. #endif