Lines Matching refs:DerValue

192         if (buffer.read() != DerValue.tag_Integer) {
204 if (buffer.read() != DerValue.tag_Integer) {
218 if (buffer.read() != DerValue.tag_Integer) {
230 if (buffer.read() != DerValue.tag_Enumerated) {
241 if (buffer.read() != DerValue.tag_BitString)
252 if (buffer.read() != DerValue.tag_BitString)
283 if (buffer.read() != DerValue.tag_OctetString)
307 if (buffer.read() != DerValue.tag_Null || buffer.read() != 0)
329 public DerValue[] getSequence(int startLen,
332 if (tag != DerValue.tag_Sequence)
347 public DerValue[] getSequence(int startLen) throws IOException {
364 public DerValue[] getSet(int startLen) throws IOException {
366 if (tag != DerValue.tag_Set)
382 public DerValue[] getSet(int startLen, boolean implicit)
391 public DerValue[] getSet(int startLen, boolean implicit,
396 if (tag != DerValue.tag_Set) {
409 protected DerValue[] readVector(int startLen) throws IOException {
421 protected DerValue[] readVector(int startLen,
450 return new DerValue[0];
464 Vector<DerValue> vec = new Vector<DerValue>(startLen);
465 DerValue value;
469 value = new DerValue(newstr.buffer, originalEncodedFormRetained);
480 DerValue[] retval = new DerValue[max];
495 public DerValue getDerValue() throws IOException {
496 return new DerValue(buffer);
503 return readString(DerValue.tag_UTF8String, "UTF-8", "UTF8");
510 return readString(DerValue.tag_PrintableString, "Printable",
521 return readString(DerValue.tag_T61String, "T61", "ISO-8859-1");
528 return readString(DerValue.tag_IA5String, "IA5", "ASCII");
535 return readString(DerValue.tag_BMPString, "BMP",
543 return readString(DerValue.tag_GeneralString, "General",
575 if (buffer.read() != DerValue.tag_UtcTime)
584 if (buffer.read() != DerValue.tag_GeneralizedTime)