Searched refs:explicitTag (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DAPOptions.java92 * @param explicitTag tag number.
99 public static APOptions parse(DerInputStream data, byte explicitTag, boolean optional) throws Asn1Exception, IOException { argument
100 if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag))
103 if (explicitTag != (der.getTag() & (byte)0x1F)) {
H A DLastReq.java118 * @param explicitTag tag number.
124 public static LastReq parse(DerInputStream data, byte explicitTag, boolean optional) throws Asn1Exception, IOException { argument
125 if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag))
128 if (explicitTag != (der.getTag() & (byte)0x1F)) {
H A DTransitedEncoding.java119 * @param explicitTag tag number.
124 public static TransitedEncoding parse(DerInputStream data, byte explicitTag, boolean optional) throws Asn1Exception, IOException { argument
125 if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag))
128 if (explicitTag != (der.getTag() & (byte)0x1F)) {
H A DAuthorizationData.java139 * @param explicitTag tag number.
144 public static AuthorizationData parse(DerInputStream data, byte explicitTag, boolean optional) throws Asn1Exception, IOException { argument
145 if ((optional) && (((byte) data.peekByte() & (byte) 0x1F) != explicitTag)) {
149 if (explicitTag != (der.getTag() & (byte) 0x1F)) {
H A DKDCOptions.java196 * @param explicitTag tag number.
204 public static KDCOptions parse(DerInputStream data, byte explicitTag, boolean optional) throws Asn1Exception, IOException { argument
205 if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag))
208 if (explicitTag != (der.getTag() & (byte)0x1F)) {
H A DTicketFlags.java86 * @param explicitTag tag number.
91 public static TicketFlags parse(DerInputStream data, byte explicitTag, boolean optional) throws Asn1Exception, IOException { argument
92 if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag))
95 if (explicitTag != (der.getTag() & (byte)0x1F)) {
H A DKRBSafeBody.java158 * @param explicitTag tag number.
163 public static KRBSafeBody parse(DerInputStream data, byte explicitTag, boolean optional) throws Asn1Exception, IOException { argument
164 if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag))
167 if (explicitTag != (der.getTag() & (byte)0x1F))
H A DTicket.java162 * @param explicitTag tag number.
166 public static Ticket parse(DerInputStream data, byte explicitTag, boolean optional) throws Asn1Exception, IOException, RealmException, KrbApErrException { argument
167 if ((optional) && (((byte)data.peekByte() & (byte)0x1F)!= explicitTag))
170 if (explicitTag != (der.getTag() & (byte)0x1F)) {
H A DHostAddress.java276 * @param explicitTag tag number.
281 public static HostAddress parse(DerInputStream data, byte explicitTag, argument
285 (((byte)data.peekByte() & (byte)0x1F) != explicitTag)) {
289 if (explicitTag != (der.getTag() & (byte)0x1F)) {
H A DHostAddresses.java224 * @param explicitTag tag number.
229 byte explicitTag, boolean optional)
232 (((byte)data.peekByte() & (byte)0x1F) != explicitTag))
235 if (explicitTag != (der.getTag() & (byte)0x1F)) {
228 parse(DerInputStream data, byte explicitTag, boolean optional) argument
H A DKerberosTime.java332 * @param explicitTag tag number.
337 public static KerberosTime parse(DerInputStream data, byte explicitTag, boolean optional) throws Asn1Exception, IOException { argument
338 if ((optional) && (((byte)data.peekByte() & (byte)0x1F)!= explicitTag))
341 if (explicitTag != (der.getTag() & (byte)0x1F)) {
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DChecksum.java283 * @param explicitTag tag number.
289 byte explicitTag, boolean optional)
293 (((byte)data.peekByte() & (byte)0x1F) != explicitTag)) {
297 if (explicitTag != (der.getTag() & (byte)0x1F)) {
288 parse(DerInputStream data, byte explicitTag, boolean optional) argument
H A DEncryptedData.java313 * @param explicitTag tag number.
323 byte explicitTag,
327 (((byte)data.peekByte() & (byte)0x1F) != explicitTag))
330 if (explicitTag != (der.getTag() & (byte)0x1F)) {
322 parse(DerInputStream data, byte explicitTag, boolean optional) argument
H A DEncryptionKey.java463 * @param explicitTag tag number.
473 explicitTag, boolean optional) throws
476 explicitTag)) {
480 if (explicitTag != (der.getTag() & (byte)0x1F)) {
472 parse(DerInputStream data, byte explicitTag, boolean optional) argument
H A DPrincipalName.java267 * @param explicitTag tag number.
273 byte explicitTag, boolean
278 explicitTag))
281 if (explicitTag != (der.getTag() & (byte)0x1F))
272 parse(DerInputStream data, byte explicitTag, boolean optional) argument
H A DRealm.java217 * @param explicitTag tag number.
222 public static Realm parse(DerInputStream data, byte explicitTag, boolean optional) throws Asn1Exception, IOException, RealmException { argument
223 if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag)) {
227 if (explicitTag != (der.getTag() & (byte)0x1F)) {

Completed in 52 milliseconds