TlsSession.cs 331 B

12345678910111213141516171819
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. using System;
  3. namespace Org.BouncyCastle.Crypto.Tls
  4. {
  5. public interface TlsSession
  6. {
  7. SessionParameters ExportSessionParameters();
  8. byte[] SessionID { get; }
  9. void Invalidate();
  10. bool IsResumable { get; }
  11. }
  12. }
  13. #endif