- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for SMB311 (0.07 sec)
-
src/test/java/jcifs/tests/ContextConfigTest.java
prop2.setProperty("jcifs.smb.client.maxVersion", "SMB302"); prop2.setProperty("jcifs.smb.client.minVersion", "SMB311"); PropertyConfiguration p2 = new PropertyConfiguration(prop2); assertEquals(DialectVersion.SMB311, p2.getMinimumVersion()); assertEquals(DialectVersion.SMB311, p2.getMaximumVersion()); Properties prop3 = new Properties();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/DialectVersion.java
/** * SMB 3.0.2 - Windows 8.1/Server 2012R2 */ SMB302(Smb2Constants.SMB2_DIALECT_0302), /** * SMB 3.1.1 - Windows 10/Server 2016 */ SMB311(Smb2Constants.SMB2_DIALECT_0311); private final boolean smb2; private final int dialect; /** * */ private DialectVersion () { this.smb2 = false;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.6K bytes - Viewed (0) -
src/test/java/jcifs/tests/AllTests.java
@Override public Map<String, String> mutate ( Map<String, String> cfg ) { cfg.put("jcifs.smb.client.minVersion", "SMB311"); cfg.put("jcifs.smb.client.maxVersion", "SMB311"); return cfg; } }); } /** * @throws CIFSException */ @AfterClass
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 14.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java
} List<NegotiateContextRequest> negoContexts = new LinkedList<>(); if ( config.getMaximumVersion() != null && config.getMaximumVersion().atLeast(DialectVersion.SMB311) ) { byte[] salt = new byte[32]; config.getRandom().nextBytes(salt); negoContexts.add(new PreauthIntegrityNegotiateContext(config, new int[] {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
int reqLen = negotiateWrite(smb2neg, first != null); boolean doPreauth = getContext().getConfig().getMaximumVersion().atLeast(DialectVersion.SMB311); if ( doPreauth ) { negoReqBuffer = new byte[reqLen]; System.arraycopy(this.sbuf, 4, negoReqBuffer, 0, reqLen); } negotiatePeek();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
return; } Smb2NegotiateResponse nego = (Smb2NegotiateResponse) trans.getNegotiateResponse(); if ( nego.getSelectedDialect().atLeast(DialectVersion.SMB311) ) { // have preauth integrity instead log.debug("Secure negotiation does not apply, is SMB3.1"); return; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 29.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
this.supportsEncryption = tc.getConfig().isEncryptionEnabled(); } if ( this.selectedDialect.atLeast(DialectVersion.SMB311) ) { if ( !checkNegotiateContexts(r, this.commonCapabilities) ) { return false; } } int maxBufferSize = tc.getConfig().getTransactionBufferSize();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 22 10:09:46 UTC 2020 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
boolean anonymous = this.credentials.isAnonymous(); long sessId = 0; boolean preauthIntegrity = negoResp.getSelectedDialect().atLeast(DialectVersion.SMB311); this.preauthIntegrityHash = preauthIntegrity ? trans.getPreauthIntegrityHash() : null; if ( this.preauthIntegrityHash != null && log.isDebugEnabled() ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0)