KeyDerivationFunc.cs 554 B

12345678910111213141516171819202122232425
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1;
  4. using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509;
  5. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs
  6. {
  7. public class KeyDerivationFunc
  8. : AlgorithmIdentifier
  9. {
  10. internal KeyDerivationFunc(Asn1Sequence seq)
  11. : base(seq)
  12. {
  13. }
  14. public KeyDerivationFunc(
  15. DerObjectIdentifier id,
  16. Asn1Encodable parameters)
  17. : base(id, parameters)
  18. {
  19. }
  20. }
  21. }
  22. #pragma warning restore
  23. #endif