IAsn1Choice.cs 626 B

123456789101112131415161718192021
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1
  4. {
  5. /**
  6. * Marker interface for CHOICE objects - if you implement this in a roll-your-own
  7. * object, any attempt to tag the object implicitly will convert the tag to an
  8. * explicit one as the encoding rules require.
  9. * <p>
  10. * If you use this interface your class should also implement the getInstance
  11. * pattern which takes a tag object and the tagging mode used.
  12. * </p>
  13. */
  14. public interface IAsn1Choice
  15. {
  16. // marker interface
  17. }
  18. }
  19. #pragma warning restore
  20. #endif