- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getBaseObject (0.05 sec)
-
src/main/java/jcifs/pac/kerberos/KerberosToken.java
if (mechToken == null || mechToken.getTagClass() != BERTags.APPLICATION || !(mechToken.getBaseObject() instanceof ASN1Sequence)) { throw new PACDecodingException("Malformed kerberos token"); } this.apRequest = new KerberosApRequest((ASN1Sequence) mechToken.getBaseObject(), keys); } catch (IOException e) { throw new PACDecodingException("Malformed kerberos token", e);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosApRequest.java
throw new PACDecodingException("Malformed Kerberos Ticket"); } try { this.ticket = new KerberosTicket(derTicket.getBaseObject().getEncoded(), this.apOptions, keys); } catch (IOException e) { throw new PACDecodingException("Malformed Kerberos Ticket", e); } break;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/jcifs/pac/ASN1Util.java
*/ public static <T extends ASN1Primitive> T as(final Class<T> type, final ASN1TaggedObject tagged) throws PACDecodingException { return as(type, tagged.getBaseObject()); } /** * Gets an element from a DLSequence at the specified index and casts it to the specified type * @param <T> the target ASN.1 primitive type * @param type the target class type
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.2K bytes - Viewed (0)