HomeSort by relevance Sort by last modified time
    Searched refs:tagNo (Results 1 - 25 of 33) sorted by null

1 2

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERTaggedObject.java 17 * @param tagNo the tag number for this object.
22 int tagNo,
25 super(explicit, tagNo, obj);
28 public DERTaggedObject(int tagNo, ASN1Encodable encodable)
30 super(true, tagNo, encodable);
64 return StreamUtil.calculateTagLength(tagNo) + StreamUtil.calculateBodyLength(length) + length;
71 return StreamUtil.calculateTagLength(tagNo) + length;
76 return StreamUtil.calculateTagLength(tagNo) + 1;
90 out.writeTag(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo);
109 out.writeTag(flags, tagNo);
    [all...]
DLTaggedObject.java 17 * @param tagNo the tag number for this object.
22 int tagNo,
25 super(explicit, tagNo, obj);
58 return StreamUtil.calculateTagLength(tagNo) + StreamUtil.calculateBodyLength(length) + length;
65 return StreamUtil.calculateTagLength(tagNo) + length;
70 return StreamUtil.calculateTagLength(tagNo) + 1;
84 out.writeTag(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo);
103 out.writeTag(flags, tagNo);
109 out.writeEncoded(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo, ZERO_BYTES);
BERTaggedObject.java 15 * @param tagNo the tag number for this object.
19 int tagNo,
22 super(true, tagNo, obj);
27 * @param tagNo the tag number for this object.
32 int tagNo,
35 super(explicit, tagNo, obj);
43 int tagNo)
45 super(false, tagNo, new BERSequence());
79 return StreamUtil.calculateTagLength(tagNo) + StreamUtil.calculateBodyLength(length) + length;
86 return StreamUtil.calculateTagLength(tagNo) + length
    [all...]
StreamUtil.java 87 static int calculateTagLength(int tagNo)
92 if (tagNo >= 31)
94 if (tagNo < 128)
103 stack[--pos] = (byte)(tagNo & 0x7F);
107 tagNo >>= 7;
108 stack[--pos] = (byte)(tagNo & 0x7F | 0x80);
110 while (tagNo > 127);
ASN1OutputStream.java 74 void writeTag(int flags, int tagNo)
77 if (tagNo < 31)
79 write(flags | tagNo);
84 if (tagNo < 128)
86 write(tagNo);
93 stack[--pos] = (byte)(tagNo & 0x7F);
97 tagNo >>= 7;
98 stack[--pos] = (byte)(tagNo & 0x7F | 0x80);
100 while (tagNo > 127);
107 void writeEncoded(int flags, int tagNo, byte[] bytes
    [all...]
ASN1TaggedObject.java 14 int tagNo;
60 * @param tagNo the tag number for this object.
65 int tagNo,
77 this.tagNo = tagNo;
106 if (tagNo != other.tagNo || empty != other.empty || explicit != other.explicit)
131 int code = tagNo;
153 return tagNo;
227 return new DERTaggedObject(explicit, tagNo, obj)
    [all...]
ASN1InputStream.java 129 * @param tagNo the tagNo defined.
136 int tagNo,
146 return new DERApplicationSpecific(isConstructed, tagNo, defIn.toByteArray());
151 return new ASN1StreamParser(defIn).readTaggedObject(isConstructed, tagNo);
157 switch (tagNo)
186 throw new IOException("unknown tag " + tagNo + " encountered");
190 return createPrimitiveDERObject(tagNo, defIn, tmpBuffers);
230 int tagNo = readTagNumber(this, tag);
251 return new BERApplicationSpecificParser(tagNo, sp).getLoadedObject()
    [all...]
ASN1StreamParser.java 138 int tagNo = ASN1InputStream.readTagNumber(_in, tag);
159 return new BERApplicationSpecificParser(tagNo, sp);
164 return new BERTaggedObjectParser(true, tagNo, sp);
167 return sp.readIndef(tagNo);
175 return new DERApplicationSpecific(isConstructed, tagNo, defIn.toByteArray());
180 return new BERTaggedObjectParser(isConstructed, tagNo, new ASN1StreamParser(defIn));
186 switch (tagNo)
200 throw new IOException("unknown tag " + tagNo + " encountered");
205 switch (tagNo)
213 return ASN1InputStream.createPrimitiveDERObject(tagNo, defIn, tmpBuffers)
    [all...]
ASN1ApplicationSpecific.java 190 int tagNo = input[0] & 0x1f;
195 if (tagNo == 0x1f)
197 tagNo = 0;
210 tagNo |= (b & 0x7f);
211 tagNo <<= 7;
215 // tagNo |= (b & 0x7f);
BERApplicationSpecific.java 71 * @param tagNo the tag number for this object.
74 public BERApplicationSpecific(int tagNo, ASN1EncodableVector vec)
76 super(true, tagNo, getEncodedVector(vec));
BERGenerator.java 24 int tagNo,
31 _tagNo = tagNo;
BEROctetStringGenerator.java 32 * @param tagNo the tag number to introduce
38 int tagNo,
42 super(out, tagNo, isExplicit);
DERApplicationSpecific.java 85 * @param tagNo the tag number for this object.
88 public DERApplicationSpecific(int tagNo, ASN1EncodableVector vec)
90 super(true, tagNo, getEncodedVector(vec));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ocsp/
CertStatus.java 15 private int tagNo;
23 tagNo = 0;
30 tagNo = 1;
35 int tagNo,
38 this.tagNo = tagNo;
45 this.tagNo = choice.getTagNo();
87 return tagNo;
106 return new DERTaggedObject(false, tagNo, value);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
ECPrivateKeyStructure.java 97 private ASN1Primitive getObjectInTag(int tagNo)
108 if (tag.getTagNo() == tagNo)
ECPrivateKey.java 151 private ASN1Primitive getObjectInTag(int tagNo)
162 if (tag.getTagNo() == tagNo)
  /system/core/logcat/tests/
logcat_test.cpp     [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSUtils.java 249 int tagNo, boolean isExplicit, int bufferSize) throws IOException
251 BEROctetStringGenerator octGen = new BEROctetStringGenerator(s, tagNo, isExplicit);
  /prebuilts/tools/common/m2/repository/com/braintreepayments/encryption/2.1.0/
encryption-2.1.0.jar 
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
PKIXNameConstraintValidator.java 131 Integer tagNo = Integers.valueOf(subtree.getBase().getTagNo());
132 if (subtreesMap.get(tagNo) == null)
134 subtreesMap.put(tagNo, new HashSet());
136 ((Set)subtreesMap.get(tagNo)).add(subtree);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXNameConstraintValidator.java     [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
bcprov-jdk15on-1.52.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
bcprov-jdk15on-1.52.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.50/
bcprov-jdk15on-1.50.jar 

Completed in 405 milliseconds

1 2