Ejemplo n.º 1
0
        public override bool Compatible(Asn1Type other)
        {
            ObjectIdentifier o = other.GetFinalType() as ObjectIdentifier;
            if (o == null)
                return false;

            return true;
        }
Ejemplo n.º 2
0
 public override bool Compatible(Asn1Type other)
 {
     return other.GetFinalType() is GeneralizedTimeType;
 }
Ejemplo n.º 3
0
 public override bool Compatible(Asn1Type other)
 {
     return other.GetFinalType() is UTCTimeType;
 }
Ejemplo n.º 4
0
 public override bool Compatible(Asn1Type other)
 {
     return other.GetFinalType() is NumericStringType;
 }
Ejemplo n.º 5
0
        public override bool Compatible(Asn1Type other)
        {
            OctetStringType o = other.GetFinalType() as OctetStringType;
            if (o == null)
                return false;

            return true;
        }
Ejemplo n.º 6
0
        public override bool Compatible(Asn1Type other)
        {
            SequenceOfType o = other.GetFinalType() as SequenceOfType;
            if (o == null)
                return false;

            return base.Compatible(other);
        }
Ejemplo n.º 7
0
 public override bool Compatible(Asn1Type other)
 {
     return GetFinalType().Compatible(other.GetFinalType());
 }