KdfParameters.cs 690 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. using System;
  3. using Org.BouncyCastle.Crypto;
  4. namespace Org.BouncyCastle.Crypto.Parameters
  5. {
  6. /**
  7. * parameters for Key derivation functions for IEEE P1363a
  8. */
  9. public class KdfParameters : IDerivationParameters
  10. {
  11. byte[] iv;
  12. byte[] shared;
  13. public KdfParameters(
  14. byte[] shared,
  15. byte[] iv)
  16. {
  17. this.shared = shared;
  18. this.iv = iv;
  19. }
  20. public byte[] GetSharedSecret()
  21. {
  22. return shared;
  23. }
  24. public byte[] GetIV()
  25. {
  26. return iv;
  27. }
  28. }
  29. }
  30. #endif