Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for NTLMEngineException (0.09 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/SmbjEngine.java

         * @param arg0 The domain.
         * @param arg1 The workstation.
         * @return The Type 1 message.
         * @throws NTLMEngineException if an NTLM engine error occurs.
         */
        @Override
        public String generateType1Msg(final String arg0, final String arg1) throws NTLMEngineException {
            // TODO Auto-generated method stub
            return null;
        }
    
        /**
         * Generates a Type 3 NTLM message.
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Sun Jul 06 02:13:03 GMT 2025
    - 2K bytes
    - Click Count (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/JcifsEngine.java

         * @param workstation the workstation name
         * @return the Base64-encoded Type 1 message
         * @throws NTLMEngineException if an NTLM engine error occurs
         */
        @Override
        public String generateType1Msg(final String domain, final String workstation) throws NTLMEngineException {
            final Type1Message type1Message = new Type1Message(cifsContext, TYPE_1_FLAGS, domain, workstation);
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Thu Dec 11 08:38:29 GMT 2025
    - 4.3K bytes
    - Click Count (0)
Back to Top