CMSAuthEnvelopedGenerator.cs 798 B

1234567891011121314151617181920
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist;
  5. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Cms
  6. {
  7. internal class CmsAuthEnvelopedGenerator
  8. {
  9. public static readonly string Aes128Ccm = NistObjectIdentifiers.IdAes128Ccm.Id;
  10. public static readonly string Aes192Ccm = NistObjectIdentifiers.IdAes192Ccm.Id;
  11. public static readonly string Aes256Ccm = NistObjectIdentifiers.IdAes256Ccm.Id;
  12. public static readonly string Aes128Gcm = NistObjectIdentifiers.IdAes128Gcm.Id;
  13. public static readonly string Aes192Gcm = NistObjectIdentifiers.IdAes192Gcm.Id;
  14. public static readonly string Aes256Gcm = NistObjectIdentifiers.IdAes256Gcm.Id;
  15. }
  16. }
  17. #pragma warning restore
  18. #endif