IAsn1Choice.cs 555 B

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