123456789101112131415161718 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- #pragma warning disable
- using System;
- using System.IO;
- namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Tls.Crypto
- {
- public interface TlsStreamSigner
- {
- /// <exception cref="IOException"/>
- Stream GetOutputStream();
- /// <exception cref="IOException"/>
- byte[] GetSignature();
- }
- }
- #pragma warning restore
- #endif
|