TlsStreamSigner.cs 426 B

123456789101112131415161718
  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.Tls.Crypto
  6. {
  7. public interface TlsStreamSigner
  8. {
  9. /// <exception cref="IOException"/>
  10. Stream GetOutputStream();
  11. /// <exception cref="IOException"/>
  12. byte[] GetSignature();
  13. }
  14. }
  15. #pragma warning restore
  16. #endif