HomeSort by relevance Sort by last modified time
    Searched defs:tagNo (Results 1 - 5 of 5) sorted by null

  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1InputStream.java 122 int tagNo,
132 return new DERApplicationSpecific(isConstructed, tagNo, defIn.toByteArray());
137 return new ASN1StreamParser(defIn).readTaggedObject(isConstructed, tagNo);
143 switch (tagNo)
164 return new DERUnknownTag(true, tagNo, defIn.toByteArray());
168 return createPrimitiveDERObject(tagNo, defIn.toByteArray());
208 int tagNo = readTagNumber(this, tag);
229 return new BERApplicationSpecificParser(tagNo, sp).getLoadedObject();
234 return new BERTaggedObjectParser(true, tagNo, sp).getLoadedObject();
238 switch (tagNo)
    [all...]
ASN1StreamParser.java 133 int tagNo = ASN1InputStream.readTagNumber(_in, tag);
154 return new BERApplicationSpecificParser(tagNo, sp);
159 return new BERTaggedObjectParser(true, tagNo, sp);
162 return sp.readIndef(tagNo);
170 return new DERApplicationSpecific(isConstructed, tagNo, defIn.toByteArray());
175 return new BERTaggedObjectParser(isConstructed, tagNo, new ASN1StreamParser(defIn));
181 switch (tagNo)
196 return new DERUnknownTag(true, tagNo, defIn.toByteArray());
201 switch (tagNo)
209 return ASN1InputStream.createPrimitiveDERObject(tagNo, defIn.toByteArray())
    [all...]
ASN1TaggedObject.java 14 int tagNo;
45 * @param tagNo the tag number for this object.
49 int tagNo,
53 this.tagNo = tagNo;
64 * @param tagNo the tag number for this object.
69 int tagNo,
81 this.tagNo = tagNo;
95 if (tagNo != other.tagNo || empty != other.empty || explicit != other.explicit
    [all...]
DERApplicationSpecific.java 67 public DERApplicationSpecific(int tagNo, ASN1EncodableVector vec)
69 this.tag = tagNo;
189 int tagNo = input[0] & 0x1f;
194 if (tagNo == 0x1f)
196 tagNo = 0;
209 tagNo |= (b & 0x7f);
210 tagNo <<= 7;
214 tagNo |= (b & 0x7f);
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
PKIXNameConstraintValidator.java     [all...]

Completed in 770 milliseconds