- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for target_name (0.09 sec)
-
src/main/java/jcifs/smb/NtlmContext.java
@Override public String getNetbiosName () { return this.netbiosName; } /** * @param targetName * the target's SPN */ public void setTargetName ( String targetName ) { this.targetName = targetName; } @Override public byte[] initSecContext ( byte[] token, int offset, int len ) throws SmbException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 15.7K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type2Message.java
int flags = getFlags(); String targetName = getTarget(); byte[] targetInformationBytes = getTargetInformation(); byte[] targetBytes = new byte[0]; if ( getFlag(NTLMSSP_REQUEST_TARGET) ) { if ( targetName != null && targetName.length() != 0 ) { targetBytes = ( flags & NTLMSSP_NEGOTIATE_UNICODE ) != 0 ? targetName.getBytes(UNI_ENCODING)
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/Type2Message.java
try { String targetName = getTarget(); byte[] challenge = getChallenge(); byte[] context = getContext(); byte[] targetInformation = getTargetInformation(); int flags = getFlags(); byte[] target = new byte[0]; if ((flags & NTLMSSP_REQUEST_TARGET) != 0) { if (targetName != null && targetName.length() != 0) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 12.6K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
*/ public Type3Message ( CIFSContext tc, Type2Message type2, String targetName, String password, String domain, String user, String workstation, 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 Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 30.6K bytes - Viewed (0)