AbstractTlsEncryptionCredentials.cs 426 B

12345678910111213141516
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. using System;
  3. using System.IO;
  4. namespace Org.BouncyCastle.Crypto.Tls
  5. {
  6. public abstract class AbstractTlsEncryptionCredentials
  7. : AbstractTlsCredentials, TlsEncryptionCredentials
  8. {
  9. /// <exception cref="IOException"></exception>
  10. public abstract byte[] DecryptPreMasterSecret(byte[] encryptedPreMasterSecret);
  11. }
  12. }
  13. #endif