CMSReadable.cs 279 B

1234567891011121314
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. using System.IO;
  5. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Cms
  6. {
  7. public interface CmsReadable
  8. {
  9. Stream GetInputStream();
  10. }
  11. }
  12. #pragma warning restore
  13. #endif