CMSProcessable.cs 465 B

1234567891011121314151617181920
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. using System.IO;
  5. namespace Best.HTTP.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. }
  17. }
  18. #pragma warning restore
  19. #endif