CMSSecureReadable.cs 485 B

123456789101112131415161718
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509;
  5. using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters;
  6. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Cms
  7. {
  8. internal interface CmsSecureReadable
  9. {
  10. AlgorithmIdentifier Algorithm { get; }
  11. object CryptoObject { get; }
  12. CmsReadable GetReadable(KeyParameter key);
  13. }
  14. }
  15. #pragma warning restore
  16. #endif