HomeSort by relevance Sort by last modified time
    Searched refs:CONSTRUCTED (Results 1 - 16 of 16) sorted by null

  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERTaggedObject.java 59 out.writeEncoded(CONSTRUCTED | TAGGED, tagNo, bytes);
64 // need to mark constructed types...
67 if ((bytes[0] & CONSTRUCTED) != 0)
69 flags = CONSTRUCTED | TAGGED;
82 out.writeEncoded(CONSTRUCTED | TAGGED, tagNo, ZERO_BYTES);
BERSequence.java 42 out.write(SEQUENCE | CONSTRUCTED);
BERSet.java 52 out.write(SET | CONSTRUCTED);
BERTaggedObjectParser.java 21 this((baseTag & DERTags.CONSTRUCTED) != 0, tagNumber, new ASN1StreamParser(contentStream));
25 boolean constructed,
29 _constructed = constructed;
53 throw new IOException("Explicit tags must be constructed (see X.690 8.14.2)");
DERSequence.java 53 * As DER requires the constructed, definite-length model to
56 * we also have to specify CONSTRUCTED, and the objects length.
78 out.writeEncoded(SEQUENCE | CONSTRUCTED, bytes);
DERTags.java 33 public static final int CONSTRUCTED = 0x20;
DERUnknownTag.java 57 out.writeEncoded(isConstructed ? DERTags.CONSTRUCTED : 0, tag, data);
LazyDERSequence.java 73 out.writeEncoded(SEQUENCE | CONSTRUCTED, encoded);
DERApplicationSpecific.java 144 if ((orig[0] & DERTags.CONSTRUCTED) != 0)
146 tmp[0] |= DERTags.CONSTRUCTED;
160 classBits |= DERTags.CONSTRUCTED;
BERTaggedObject.java 54 out.writeTag(CONSTRUCTED | TAGGED, tagNo);
DERSet.java 73 * As DER requires the constructed, definite-length model to
76 * we also have to specify CONSTRUCTED, and the objects length.
98 out.writeEncoded(SET | CONSTRUCTED, bytes);
BERConstructedOctetString.java 123 out.write(CONSTRUCTED | OCTET_STRING);
ASN1InputStream.java 61 * @param lazyEvaluate true if parsing inside constructed objects can be delayed.
84 * Create an ASN1InputStream where no DER object will be longer than limit, and constructed
89 * @param lazyEvaluate true if parsing inside constructed objects can be delayed.
126 boolean isConstructed = (tag & CONSTRUCTED) != 0;
142 // TODO There are other tags that may be constructed (e.g. BIT_STRING)
210 boolean isConstructed = (tag & CONSTRUCTED) != 0;
237 // TODO There are other tags that may be constructed (e.g. BIT_STRING)
ASN1StreamParser.java 34 // Note: INDEF => CONSTRUCTED
36 // TODO There are other tags that may be constructed (e.g. BIT_STRING)
52 DEREncodable readImplicit(boolean constructed, int tag) throws IOException
56 if (!constructed)
64 if (constructed)
81 throw new ASN1Exception("sequences must use constructed encoding (see X.690 8.9.1/8.10.1)");
83 throw new ASN1Exception("sets must use constructed encoding (see X.690 8.11.1/8.12.1)");
93 DERObject readTaggedObject(boolean constructed, int tag) throws IOException
95 if (!constructed)
97 // Note: !CONSTRUCTED => IMPLICI
    [all...]
DERExternal.java 139 out.writeEncoded(DERTags.CONSTRUCTED, DERTags.EXTERNAL, baos.toByteArray());
  /external/tcpdump/
print-snmp.c 251 "Constructed",
252 #define CONSTRUCTED 1
620 case CONSTRUCTED:
    [all...]

Completed in 102 milliseconds