TlsSrpIdentity.cs 382 B

12345678910111213141516
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Tls
  5. {
  6. /// <summary>Processor interface for an SRP identity.</summary>
  7. public interface TlsSrpIdentity
  8. {
  9. byte[] GetSrpIdentity();
  10. byte[] GetSrpPassword();
  11. }
  12. }
  13. #pragma warning restore
  14. #endif