- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 82 for negotitate (0.07 sec)
-
src/main/java/jcifs/smb/SpnegoContext.java
} if (len == 0) { resp = initialToken(); } else { resp = negotitate(inputBuf, offset, len); } if (resp == null) { return null; } return resp.toByteArray(); } private SpnegoToken negotitate(final byte[] inputBuf, final int offset, final int len) throws CIFSException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
*/ @Override public byte[] getServerEncryptionKey() { if (this.negotiated == null) { return null; } if (this.negotiated instanceof SmbComNegotiateResponse) { return ((SmbComNegotiateResponse) this.negotiated).getServerData().encryptionKey; } return null; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
} /** * Returns the server capabilities negotiated during the SMB handshake. * * @return the negotiated capabilities */ public int getNegotiatedCapabilities() { return this.capabilities; } /** * Gets the negotiated send buffer size. * * @return negotiated send buffer size */ public int getNegotiatedSendBufferSize() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponse.java
import jcifs.Decodable; import jcifs.internal.SMBProtocolDecodingException; import jcifs.internal.util.SMBUtil; /** * SMB2 Validate Negotiate Info response data structure. This structure contains the server's * validation of the originally negotiated SMB2 dialect. * * @author mbechler * */ public class ValidateNegotiateInfoResponse implements Decodable { /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
} } @Override protected void doConnect() throws IOException { /* * Negotiate Protocol Request / Response */ final SmbComNegotiateResponse resp = new SmbComNegotiateResponse(server); try { negotiate(port, resp); } catch (final ConnectException | NoRouteToHostException nr) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/SmbDirectNegotiateResponse.java
} /** * Get the negotiated SMB Direct protocol version * * @return negotiated protocol version */ public int getNegotiatedVersion() { return negotiatedVersion; } /** * Set the negotiated SMB Direct protocol version * * @param negotiatedVersion negotiated protocol version */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoRequest.java
*/ package jcifs.internal.smb2.ioctl; import jcifs.Encodable; import jcifs.internal.util.SMBUtil; /** * SMB2 Validate Negotiate Info request data structure. This structure is used to validate * that the negotiated SMB2 dialect matches what was originally negotiated. * * @author mbechler * */ public class ValidateNegotiateInfoRequest implements Encodable { private final int capabilities;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpFilter.java
} } @Override public void destroy() { } /** * This method simply calls {@code negotiate( req, resp, false )} * and then {@code chain.doFilter}. You can override and call * negotiate manually to achive a variety of different behavior. */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/EncryptionNegotiateContext.java
package jcifs.internal.smb2.nego; import jcifs.Configuration; import jcifs.internal.SMBProtocolDecodingException; import jcifs.internal.util.SMBUtil; /** * SMB2 Encryption Negotiate Context. * * This negotiate context is used in SMB 3.x to negotiate * encryption capabilities and cipher suites. * * @author mbechler */ public class EncryptionNegotiateContext implements NegotiateContextRequest, NegotiateContextResponse {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 3.8K bytes - Viewed (0)