CryptlibObjectIdentifiers.cs 530 B

123456789101112131415
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cryptlib
  4. {
  5. internal class CryptlibObjectIdentifiers
  6. {
  7. internal static readonly DerObjectIdentifier cryptlib = new DerObjectIdentifier("1.3.6.1.4.1.3029");
  8. internal static readonly DerObjectIdentifier ecc = cryptlib.Branch("1.5");
  9. internal static readonly DerObjectIdentifier curvey25519 = ecc.Branch("1");
  10. }
  11. }
  12. #pragma warning restore
  13. #endif