IDigestCalculator.cs 265 B

12345678910111213
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Cms
  5. {
  6. internal interface IDigestCalculator
  7. {
  8. byte[] GetDigest();
  9. }
  10. }
  11. #pragma warning restore
  12. #endif