RFC3739QCObjectIdentifiers.cs 740 B

12345678910111213141516171819202122232425
  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. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Qualified
  6. {
  7. public sealed class Rfc3739QCObjectIdentifiers
  8. {
  9. private Rfc3739QCObjectIdentifiers()
  10. {
  11. }
  12. //
  13. // base id
  14. //
  15. public static readonly DerObjectIdentifier IdQcs = new DerObjectIdentifier("1.3.6.1.5.5.7.11");
  16. public static readonly DerObjectIdentifier IdQcsPkixQCSyntaxV1 = new DerObjectIdentifier(IdQcs+".1");
  17. public static readonly DerObjectIdentifier IdQcsPkixQCSyntaxV2 = new DerObjectIdentifier(IdQcs+".2");
  18. }
  19. }
  20. #pragma warning restore
  21. #endif