- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for AtLeast (0.05 sec)
-
src/main/java/jcifs/smb/SmbTransportImpl.java
Smb2NegotiateResponse resp = (Smb2NegotiateResponse) this.negotiated; int cipherId = -1; if ( resp.getSelectedDialect().atLeast(DialectVersion.SMB311) ) { cipherId = resp.getSelectedCipher(); } else if ( resp.getSelectedDialect().atLeast(DialectVersion.SMB300) ) { cipherId = EncryptionNegotiateContext.CIPHER_AES128_CCM; } else {
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/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)