Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getObjectAt (0.21 sec)

  1. src/main/java/jcifs/spnego/NegTokenInit.java

                final ASN1ObjectIdentifier spnego = (ASN1ObjectIdentifier) vec.getObjectAt(0);
                if (!SPNEGO_OID.equals(spnego)) {
                    throw new IOException("Malformed SPNEGO token, OID " + spnego);
                }
                ASN1TaggedObject tagged = (ASN1TaggedObject) vec.getObjectAt(1);
                if (tagged.getTagNo() != 0) {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/ASN1Util.java

         */
        public static <T extends ASN1Primitive> T as(final Class<T> type, final ASN1Sequence sequence, final int index)
                throws PACDecodingException {
            return as(type, sequence.getObjectAt(index));
        }
    
        /**
         * Read a tagged object without parsing it's contents
         *
         * BC no longer seems to allow that out of the box
         *
         * @param expectTag the expected tag number
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.2K bytes
    - Viewed (0)
Back to top