PemObjectParser.cs 496 B

123456789101112131415161718192021
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. using System.IO;
  5. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO.Pem
  6. {
  7. public interface PemObjectParser
  8. {
  9. /// <param name="obj">
  10. /// A <see cref="PemObject"/>
  11. /// </param>
  12. /// <returns>
  13. /// A <see cref="System.Object"/>
  14. /// </returns>
  15. /// <exception cref="IOException"></exception>
  16. object ParseObject(PemObject obj);
  17. }
  18. }
  19. #pragma warning restore
  20. #endif