Searched defs:explicit (Results 1 - 25 of 84) sorted by path

1234

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1OctetString.java20 * @param explicit true if the object is meant to be explicitly
27 boolean explicit)
31 if (explicit || o instanceof ASN1OctetString)
25 getInstance( ASN1TaggedObject obj, boolean explicit) argument
H A DASN1Sequence.java64 * @param explicit true if the object is meant to be explicitly tagged,
71 boolean explicit)
73 if (explicit)
77 throw new IllegalArgumentException("object implicit - explicit expected.");
69 getInstance( ASN1TaggedObject obj, boolean explicit) argument
H A DASN1Set.java66 * @param explicit true if the object is meant to be explicitly tagged
73 boolean explicit)
75 if (explicit)
79 throw new IllegalArgumentException("object implicit - explicit expected.");
71 getInstance( ASN1TaggedObject obj, boolean explicit) argument
H A DASN1TaggedObject.java16 boolean explicit = true; field in class:ASN1TaggedObject
21 boolean explicit)
23 if (explicit)
54 * Create a tagged object with the style given by the value of explicit.
57 * to explicit in accordance with the ASN.1 encoding rules.
59 * @param explicit true if the object is explicitly tagged.
64 boolean explicit,
70 this.explicit = true;
74 this.explicit = explicit;
19 getInstance( ASN1TaggedObject obj, boolean explicit) argument
63 ASN1TaggedObject( boolean explicit, int tagNo, ASN1Encodable obj) argument
[all...]
H A DBERTaggedObject.java26 * @param explicit true if an explicitly tagged object.
31 boolean explicit,
35 super(explicit, tagNo, obj);
52 if (explicit)
77 if (explicit)
104 if (!explicit)
30 BERTaggedObject( boolean explicit, int tagNo, ASN1Encodable obj) argument
H A DDERApplicationSpecific.java44 boolean explicit,
53 this.isConstructed = explicit || (primitive instanceof ASN1Set || primitive instanceof ASN1Sequence);
56 if (explicit)
160 * Return the enclosed object assuming explicit tagging.
43 DERApplicationSpecific( boolean explicit, int tag, ASN1Encodable object) argument
H A DDERBMPString.java49 * @param explicit true if the object is meant to be explicitly
56 boolean explicit)
60 if (explicit || o instanceof DERBMPString)
54 getInstance( ASN1TaggedObject obj, boolean explicit) argument
H A DDERBitString.java113 * @param explicit true if the object is meant to be explicitly
120 boolean explicit)
124 if (explicit || o instanceof DERBitString)
118 getInstance( ASN1TaggedObject obj, boolean explicit) argument
H A DDERBoolean.java75 * @param explicit true if the object is meant to be explicitly
82 boolean explicit)
86 if (explicit || o instanceof DERBoolean)
80 getInstance( ASN1TaggedObject obj, boolean explicit) argument
H A DDEREnumerated.java53 * @param explicit true if the object is meant to be explicitly
60 boolean explicit)
64 if (explicit || o instanceof DEREnumerated)
58 getInstance( ASN1TaggedObject obj, boolean explicit) argument
H A DDERGeneralString.java40 boolean explicit)
44 if (explicit || o instanceof DERGeneralString)
38 getInstance( ASN1TaggedObject obj, boolean explicit) argument
H A DDERGeneralizedTime.java58 * @param explicit true if the object is meant to be explicitly
65 boolean explicit)
69 if (explicit || o instanceof DERGeneralizedTime)
63 getInstance( ASN1TaggedObject obj, boolean explicit) argument
H A DDERIA5String.java49 * @param explicit true if the object is meant to be explicitly
56 boolean explicit)
60 if (explicit || o instanceof DERIA5String)
54 getInstance( ASN1TaggedObject obj, boolean explicit) argument
H A DDERInteger.java52 * @param explicit true if the object is meant to be explicitly
59 boolean explicit)
63 if (explicit || o instanceof DERInteger)
57 getInstance( ASN1TaggedObject obj, boolean explicit) argument
H A DDERNumericString.java49 * @param explicit true if the object is meant to be explicitly
56 boolean explicit)
60 if (explicit || o instanceof DERNumericString)
54 getInstance( ASN1TaggedObject obj, boolean explicit) argument
H A DDERObjectIdentifier.java69 * @param explicit true if the object is meant to be explicitly
76 boolean explicit)
80 if (explicit || o instanceof DERObjectIdentifier)
74 getInstance( ASN1TaggedObject obj, boolean explicit) argument
H A DDERPrintableString.java51 * @param explicit true if the object is meant to be explicitly
58 boolean explicit)
62 if (explicit || o instanceof DERPrintableString)
56 getInstance( ASN1TaggedObject obj, boolean explicit) argument
H A DDERT61String.java50 * @param explicit true if the object is meant to be explicitly
57 boolean explicit)
61 if (explicit || o instanceof DERT61String)
55 getInstance( ASN1TaggedObject obj, boolean explicit) argument
H A DDERTaggedObject.java16 * @param explicit true if an explicitly tagged object.
21 boolean explicit,
25 super(explicit, tagNo, obj);
37 if (explicit)
62 if (explicit)
88 if (explicit)
20 DERTaggedObject( boolean explicit, int tagNo, ASN1Encodable obj) argument
H A DDERUTCTime.java57 * @param explicit true if the object is meant to be explicitly
64 boolean explicit)
68 if (explicit || o instanceof ASN1UTCTime)
62 getInstance( ASN1TaggedObject obj, boolean explicit) argument
H A DDERUTF8String.java51 * @param explicit
59 boolean explicit)
63 if (explicit || o instanceof DERUTF8String)
57 getInstance( ASN1TaggedObject obj, boolean explicit) argument
H A DDERUniversalString.java50 * @param explicit true if the object is meant to be explicitly
57 boolean explicit)
61 if (explicit || o instanceof DERUniversalString)
55 getInstance( ASN1TaggedObject obj, boolean explicit) argument
H A DDERVisibleString.java49 * @param explicit true if the object is meant to be explicitly
56 boolean explicit)
60 if (explicit || o instanceof DERVisibleString)
54 getInstance( ASN1TaggedObject obj, boolean explicit) argument
H A DDLTaggedObject.java16 * @param explicit true if an explicitly tagged object.
21 boolean explicit,
25 super(explicit, tagNo, obj);
32 if (explicit)
56 if (explicit)
82 if (explicit)
20 DLTaggedObject( boolean explicit, int tagNo, ASN1Encodable obj) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DContentInfo.java68 boolean explicit)
70 return getInstance(ASN1Sequence.getInstance(obj, explicit));
66 getInstance( ASN1TaggedObject obj, boolean explicit) argument

Completed in 320 milliseconds

1234