Inheritance: Asn1Encodable
コード例 #1
0
        protected override bool Asn1Equals(
			Asn1Object asn1Object)
        {
            DerGeneralString other = asn1Object as DerGeneralString;

            if (other == null)
                return false;

            return this.str.Equals(other.str);
        }
コード例 #2
0
        public virtual void WriteObject(
			Asn1Object obj)
        {
            if (obj == null)
            {
                WriteNull();
            }
            else
            {
                obj.Encode(this);
            }
        }
コード例 #3
0
        protected override bool Asn1Equals(
			Asn1Object asn1Object)
        {
            DerUnknownTag other = asn1Object as DerUnknownTag;

            if (other == null)
                return false;

            return this.isConstructed == other.isConstructed
                && this.tag == other.tag
                && Arrays.AreEqual(this.data, other.data);
        }
コード例 #4
0
        public DerExternal(
			Asn1EncodableVector vector)
        {
            int offset = 0;
            Asn1Object enc = GetObjFromVector(vector, offset);
            if (enc is DerObjectIdentifier)
            {
                directReference = (DerObjectIdentifier)enc;
                offset++;
                enc = GetObjFromVector(vector, offset);
            }
            if (enc is DerInteger)
            {
                indirectReference = (DerInteger) enc;
                offset++;
                enc = GetObjFromVector(vector, offset);
            }
            if (!(enc is DerTaggedObject))
            {
                dataValueDescriptor = (Asn1Object) enc;
                offset++;
                enc = GetObjFromVector(vector, offset);
            }
            if (!(enc is DerTaggedObject))
            {
                throw new InvalidOperationException(
                    "No tagged object found in vector. Structure doesn't seem to be of type External");
            }

            if (vector.Count != offset + 1)
                throw new ArgumentException("input vector too large", "vector");

            if (!(enc is DerTaggedObject))
                throw new ArgumentException("No tagged object found in vector. Structure doesn't seem to be of type External", "vector");

            DerTaggedObject obj = (DerTaggedObject)enc;

            // Use property accessor to include check on value
            Encoding = obj.TagNo;

            if (encoding < 0 || encoding > 2)
                throw new InvalidOperationException("invalid encoding value");

            externalContent = obj.GetObject();
        }
コード例 #5
0
        protected override bool Asn1Equals(
			Asn1Object asn1Object)
        {
            DerInteger other = asn1Object as DerInteger;

            if (other == null)
                return false;

            return Arrays.AreEqual(this.bytes, other.bytes);
        }
コード例 #6
0
        protected override bool Asn1Equals(
			Asn1Object asn1Object)
        {
            if (this == asn1Object)
                return true;

            DerExternal other = asn1Object as DerExternal;

            if (other == null)
                return false;

            return Platform.Equals(directReference, other.directReference)
                && Platform.Equals(indirectReference, other.indirectReference)
                && Platform.Equals(dataValueDescriptor, other.dataValueDescriptor)
                && externalContent.Equals(other.externalContent);
        }
コード例 #7
0
        protected override bool Asn1Equals(
			Asn1Object asn1Object)
        {
            Asn1Sequence other = asn1Object as Asn1Sequence;

            if (other == null)
                return false;

            if (Count != other.Count)
                return false;

            IEnumerator s1 = GetEnumerator();
            IEnumerator s2 = other.GetEnumerator();

            while (s1.MoveNext() && s2.MoveNext())
            {
                Asn1Object o1 = GetCurrent(s1).ToAsn1Object();
                Asn1Object o2 = GetCurrent(s2).ToAsn1Object();

                if (!o1.Equals(o2))
                    return false;
            }

            return true;
        }
コード例 #8
0
        protected override bool Asn1Equals(
			Asn1Object asn1Object)
        {
            DerBoolean other = asn1Object as DerBoolean;

            if (other == null)
                return false;

            return IsTrue == other.IsTrue;
        }
コード例 #9
0
 /**
 * Creates a new instance of DerExternal.
 * See X.690 for more informations about the meaning of these parameters
 * @param directReference The direct reference or <code>null</code> if not set.
 * @param indirectReference The indirect reference or <code>null</code> if not set.
 * @param dataValueDescriptor The data value descriptor or <code>null</code> if not set.
 * @param encoding The encoding to be used for the external data
 * @param externalData The external data
 */
 public DerExternal(DerObjectIdentifier directReference, DerInteger indirectReference, Asn1Object dataValueDescriptor, int encoding, Asn1Object externalData)
 {
     DirectReference = directReference;
     IndirectReference = indirectReference;
     DataValueDescriptor = dataValueDescriptor;
     Encoding = encoding;
     ExternalContent = externalData.ToAsn1Object();
 }
        protected override bool Asn1Equals(
			Asn1Object asn1Object)
        {
            DerApplicationSpecific other = asn1Object as DerApplicationSpecific;

            if (other == null)
                return false;

            return this.isConstructed == other.isConstructed
                && this.tag == other.tag
                && Arrays.AreEqual(this.octets, other.octets);
        }
コード例 #11
0
 protected abstract bool Asn1Equals(Asn1Object asn1Object);
コード例 #12
0
        protected override bool Asn1Equals(
			Asn1Object asn1Object)
        {
            DerBitString other = asn1Object as DerBitString;

            if (other == null)
                return false;

            return this.padBits == other.padBits
                && Arrays.AreEqual(this.data, other.data);
        }
コード例 #13
0
        protected override bool Asn1Equals(
			Asn1Object asn1Object)
        {
            DerUtcTime other = asn1Object as DerUtcTime;

            if (other == null)
                return false;

            return this.time.Equals(other.time);
        }
        protected override bool Asn1Equals(
			Asn1Object asn1Object)
        {
            DerObjectIdentifier other = asn1Object as DerObjectIdentifier;

            if (other == null)
                return false;

            return this.identifier.Equals(other.identifier);
        }
コード例 #15
0
        protected override bool Asn1Equals(
			Asn1Object asn1Object)
        {
            return asn1Object is DerNull;
        }
コード例 #16
0
 internal bool CallAsn1Equals(Asn1Object obj)
 {
     return(Asn1Equals(obj));
 }
コード例 #17
0
 protected abstract bool Asn1Equals(Asn1Object asn1Object);
コード例 #18
0
 internal bool CallAsn1Equals(Asn1Object obj)
 {
     return Asn1Equals(obj);
 }
コード例 #19
0
 /**
 * Creates a new instance of DerExternal
 * See X.690 for more informations about the meaning of these parameters
 * @param directReference The direct reference or <code>null</code> if not set.
 * @param indirectReference The indirect reference or <code>null</code> if not set.
 * @param dataValueDescriptor The data value descriptor or <code>null</code> if not set.
 * @param externalData The external data in its encoded form.
 */
 public DerExternal(DerObjectIdentifier directReference, DerInteger indirectReference, Asn1Object dataValueDescriptor, DerTaggedObject externalData)
     : this(directReference, indirectReference, dataValueDescriptor, externalData.TagNo, externalData.ToAsn1Object())
 {
 }
コード例 #20
0
        public BerOctetString(
			Asn1Object obj)
            : base(obj)
        {
        }
コード例 #21
0
        protected override bool Asn1Equals(
			Asn1Object asn1Object)
        {
            Asn1TaggedObject other = asn1Object as Asn1TaggedObject;

            if (other == null)
                return false;

            return this.tagNo == other.tagNo
            //				&& this.empty == other.empty
                && this.explicitly == other.explicitly   // TODO Should this be part of equality?
                && Platform.Equals(GetObject(), other.GetObject());
        }