IDerivationParameters.cs 260 B

123456789101112131415
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. using System;
  3. namespace Org.BouncyCastle.Crypto
  4. {
  5. /**
  6. * Parameters for key/byte stream derivation classes
  7. */
  8. public interface IDerivationParameters
  9. {
  10. }
  11. }
  12. #endif