X509Attributes.cs 335 B

12345678910111213
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509
  5. {
  6. public class X509Attributes
  7. {
  8. public static readonly DerObjectIdentifier RoleSyntax = new DerObjectIdentifier("2.5.4.72");
  9. }
  10. }
  11. #pragma warning restore
  12. #endif