OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tagNo
(Results
1 - 8
of
8
) sorted by null
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1StreamParser.java
136
int
tagNo
= ASN1InputStream.readTagNumber(_in, tag);
157
return new BERApplicationSpecificParser(
tagNo
, sp);
162
return new BERTaggedObjectParser(true,
tagNo
, sp);
165
return sp.readIndef(
tagNo
);
173
return new DERApplicationSpecific(isConstructed,
tagNo
, defIn.toByteArray());
178
return new BERTaggedObjectParser(isConstructed,
tagNo
, new ASN1StreamParser(defIn));
184
switch (
tagNo
)
198
throw new IOException("unknown tag " +
tagNo
+ " encountered");
203
switch (
tagNo
)
211
return ASN1InputStream.createPrimitiveDERObject(
tagNo
, defIn, tmpBuffers)
[
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
;
148
return
tagNo
;
221
return new DERTaggedObject(explicit,
tagNo
, obj)
[
all
...]
ASN1InputStream.java
130
int
tagNo
,
140
return new DERApplicationSpecific(isConstructed,
tagNo
, defIn.toByteArray());
145
return new ASN1StreamParser(defIn).readTaggedObject(isConstructed,
tagNo
);
151
switch (
tagNo
)
180
throw new IOException("unknown tag " +
tagNo
+ " encountered");
184
return createPrimitiveDERObject(
tagNo
, defIn, tmpBuffers);
224
int
tagNo
= readTagNumber(this, tag);
245
return new BERApplicationSpecificParser(
tagNo
, sp).getLoadedObject();
250
return new BERTaggedObjectParser(true,
tagNo
, sp).getLoadedObject();
254
switch (
tagNo
)
[
all
...]
DERApplicationSpecific.java
69
public DERApplicationSpecific(int
tagNo
, ASN1EncodableVector vec)
71
this.tag =
tagNo
;
240
int
tagNo
= input[0] & 0x1f;
245
if (
tagNo
== 0x1f)
247
tagNo
= 0;
260
tagNo
|= (b & 0x7f);
261
tagNo
<<= 7;
265
tagNo
|= (b & 0x7f);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXNameConstraintValidator.java
[
all
...]
/prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar
/prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar
/prebuilts/sdk/tools/lib/
signapk.jar
Completed in 3127 milliseconds