- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for getSelectedDialect (0.26 sec)
-
src/main/java/jcifs/internal/SmbNegotiationResponse.java
*/ boolean isValid ( CIFSContext cifsContext, SmbNegotiationRequest request ); /** * * @return selected dialect */ DialectVersion getSelectedDialect (); /** * * @return whether the server has singing enabled */ boolean isSigningEnabled (); /** * * @return whether the server requires signing
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
this.useUnicode = ctx.getConfig().isUseUnicode(); } /** * {@inheritDoc} * * @see jcifs.internal.SmbNegotiationResponse#getSelectedDialect() */ @Override public DialectVersion getSelectedDialect () { return DialectVersion.SMB1; } /** * {@inheritDoc} * * @see jcifs.internal.SmbNegotiationResponse#getTransactionBufferSize()
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 15.4K bytes - Viewed (0) -
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) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
*/ public byte[] getServerGuid () { return this.serverGuid; } /** * @return the selectedDialect */ @Override public DialectVersion getSelectedDialect () { return this.selectedDialect; } /** * @return the selectedCipher */ public int getSelectedCipher () { return this.selectedCipher; }
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/SmbTreeImpl.java
log.debug("Secure negotiation does not apply"); 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)