Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getTargetInformation (0.15 sec)

  1. src/test/java/jcifs/ntlmssp/Type2MessageTest.java

                Type2Message parsedMessage = new Type2Message(bytes);
                assertEquals(TEST_TARGET, parsedMessage.getTarget());
                assertNotNull(parsedMessage.getTargetInformation());
                assertArrayEquals(message.getTargetInformation(), parsedMessage.getTargetInformation());
            }
    
            @Test
            @DisplayName("toByteArray should not include target when flag is not set")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 38.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/ntlmssp/Type2Message.java

         *
         * @return A <code>byte[]</code> containing the target information block.
         * The target information block is used by the client to create an
         * NTLMv2 response.
         */
        public byte[] getTargetInformation() {
            return targetInformation;
        }
    
        /**
         * Sets the target information block.
         * The target information block is used by the client to create
         * an NTLMv2 response.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 13K bytes
    - Viewed (0)
  3. src/main/java/jcifs/ntlmssp/Type2Message.java

         * @return A <code>byte[]</code> containing the target information block.
         *         The target information block is used by the client to create an
         *         NTLMv2 response.
         */
        public byte[] getTargetInformation() {
            return this.targetInformation;
        }
    
        /**
         * Sets the target information block.
         * The target information block is used by the client to create
         * an NTLMv2 response.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

            return NtlmPasswordAuthentication.getNTLMv2Response(responseKeyNT, type2.getChallenge(), clientChallenge, nanos1601,
                    type2.getTargetInformation());
        }
    
        /**
         * Constructs the NT response to the given Type-2 message using
         * the supplied password.
         *
         * @param type2 The Type-2 message.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/ntlmssp/Type3Message.java

                setLMResponse(nt);
                setNTResponse(nt);
                break;
            case 3:
            case 4:
            case 5:
                final byte[] ntlmClientChallengeInfo = type2.getTargetInformation();
                final List<AvPair> avPairs = ntlmClientChallengeInfo != null ? AvPairs.decode(ntlmClientChallengeInfo) : null;
    
                // if targetInfo has an MsvAvTimestamp
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 32.7K bytes
    - Viewed (0)
Back to top