Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for parsing (0.24 sec)

  1. src/main/java/jcifs/ntlmssp/Type1Message.java

         *
         * @param material
         *            The raw Type-1 material used to construct this message.
         * @throws IOException
         *             If an error occurs while parsing the material.
         */
        public Type1Message ( byte[] material ) throws IOException {
            parse(material);
        }
    
    
        /**
         * Returns the default flags for a generic Type-1 message in the
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Sep 02 12:55:08 GMT 2018
    - 7.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

        }
    
    
        /**
         * Create an <tt>NtlmPasswordAuthentication</tt> object from the userinfo
         * component of an SMB URL like "<tt>domain;user:pass</tt>". This constructor
         * is used internally be jCIFS when parsing SMB URLs.
         * 
         * @param tc
         * @param userInfo
         */
        public NtlmPasswordAuthentication ( CIFSContext tc, String userInfo ) {
            super(
                userInfo,
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 8.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/ntlmssp/Type1Message.java

        }
    
        /**
         * Creates a Type-1 message using the given raw Type-1 material.
         *
         * @param material The raw Type-1 material used to construct this message.
         * @throws IOException If an error occurs while parsing the material.
         */
        public Type1Message(byte[] material) throws IOException {
            parse(material);
        }
    
        /**
         * Returns the supplied authentication domain.
         *
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/ntlmssp/Type2Message.java

        /**
         * Creates a Type-2 message using the given raw Type-2 material.
         *
         * @param material The raw Type-2 material used to construct this message.
         * @throws IOException If an error occurs while parsing the material.
         */
        public Type2Message(byte[] material) throws IOException {
            parse(material);
        }
    
        /**
         * Returns the challenge for this message.
         *
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 12.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/ntlmssp/Type2Message.java

         *
         * @param material
         *            The raw Type-2 material used to construct this message.
         * @throws IOException
         *             If an error occurs while parsing the material.
         */
        public Type2Message ( byte[] material ) throws IOException {
            parse(material);
        }
    
    
        /**
         * Returns the default flags for a generic Type-2 message in the
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

    /**
     * Create an <tt>NtlmPasswordAuthentication</tt> object from the userinfo
     * component of an SMB URL like "<tt>domain;user:pass</tt>". This constructor
     * is used internally be jCIFS when parsing SMB URLs.
     */
    
        public NtlmPasswordAuthentication( String userInfo ) {
            domain = username = password = null;
    
            if( userInfo != null ) {
                try {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/pac/ASN1Util.java

            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
         * @return coded bytes of the tagged object
         * @throws IOException
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 6.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

        /**
         * Creates a Type-3 message using the given raw Type-3 material.
         *
         * @param material The raw Type-3 material used to construct this message.
         * @throws IOException If an error occurs while parsing the material.
         */
        public Type3Message(byte[] material) throws IOException {
            parse(material);
        }
    
        /**
         * Returns the LanManager/LMv2 response.
         *
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/Config.java

    import java.util.StringTokenizer;
    
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.context.SingletonContext;
    
    
    /**
     * This class now contains only utilities for config parsing.
     * 
     * We strongly suggest that you create an explicit {@link jcifs.context.CIFSContextWrapper}
     * with your desired config. It's base implementation {@link jcifs.context.BaseContext}
     * should be sufficient for most needs.
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbTransportImpl.java

                }
                else {
                    Response notification = createNotification(key);
                    if ( notification != null ) {
                        log.debug("Parsing notification");
                        doRecv(notification);
                        handleNotification(notification);
                        return;
                    }
                    log.warn("Skipping message " + key);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
Back to top