IMacDerivationFunction.cs 286 B

1234567891011
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto
  4. {
  5. public interface IMacDerivationFunction:IDerivationFunction
  6. {
  7. IMac GetMac();
  8. }
  9. }
  10. #pragma warning restore
  11. #endif