Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for target_name (0.47 sec)

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

            int flags = getFlags();
            final String targetName = getTarget();
            final byte[] targetInformationBytes = getTargetInformation();
            byte[] targetBytes = {};
    
            if (getFlag(NTLMSSP_REQUEST_TARGET)) {
                if (targetName != null && targetName.length() != 0) {
                    targetBytes = (flags & NTLMSSP_NEGOTIATE_UNICODE) != 0 ? targetName.getBytes(UNI_ENCODING)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtlmContext.java

            return this.netbiosName;
        }
    
        /**
         * Sets the target server's Service Principal Name (SPN).
         * @param targetName
         *            the target's SPN
         */
        public void setTargetName(final String targetName) {
            this.targetName = targetName;
        }
    
        @Override
        public byte[] initSecContext(final byte[] token, final int offset, final int len) throws SmbException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/ntlmssp/Type2Message.java

            try {
                final String targetName = getTarget();
                final byte[] challenge = getChallenge();
                byte[] context = getContext();
                final byte[] targetInformation = getTargetInformation();
                int flags = getFlags();
                byte[] target = {};
                if ((flags & NTLMSSP_REQUEST_TARGET) != 0) {
                    if (targetName != null && targetName.length() != 0) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 13K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/Type3Message.java

         */
        public Type3Message(final CIFSContext tc, final Type2Message type2, final String targetName, final String password, final String domain,
                final String user, final String workstation, final int flags) throws GeneralSecurityException, CIFSException {
            // keep old behavior of anonymous auth when no password is provided
            this(tc, type2, targetName, password, domain, user, workstation, flags, false);
        }
    
        /**
    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