Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    
                    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 ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Oct 01 12:01:17 GMT 2023
    - 7.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/ASN1Util.java

         * @throws PACDecodingException
         */
        public static <T extends ASN1Primitive> T as ( Class<T> type, ASN1Sequence sequence, 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
         * @param in
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 6.5K bytes
    - Viewed (0)
Back to top