CMSProcessable.cs 501 B

1234567891011121314151617181920212223
  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 CmsProcessable
  8. {
  9. /// <summary>
  10. /// Generic routine to copy out the data we want processed.
  11. /// </summary>
  12. /// <remarks>
  13. /// This routine may be called multiple times.
  14. /// </remarks>
  15. void Write(Stream outStream);
  16. [Obsolete]
  17. object GetContent();
  18. }
  19. }
  20. #pragma warning restore
  21. #endif