- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 328 for session1 (0.05 sec)
-
src/test/java/jcifs/SmbSessionTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeHandleInternal.java
/** * Checks if SMB message signing is active for this session * @return whether the session uses SMB signing * @throws CIFSException if a general CIFS error occurs * @throws SmbException if an SMB-specific error occurs */ boolean areSignaturesActive() throws CIFSException; /** * Internal/testing use only * * @return attached session */ SmbSession getSession();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbSessionTest.java
SmbSession session = new SmbSession(addr, 445, inet, 0, auth); // transport should still be null until first use assertNull(session.transport, "transport not created yet"); SmbTransport tr = session.transport(); assertNotNull(tr, "transport should now exist"); // subsequent calls return the same instance assertSame(tr, session.transport()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComSessionSetupAndX.java
SmbSession session; Object cred; SmbComSessionSetupAndX(final SmbSession session, final ServerMessageBlock andx, final Object cred) throws SmbException { super(andx); command = SMB_COM_SESSION_SETUP_ANDX; this.session = session; this.cred = cred; sessionKey = session.transport.sessionKey; capabilities = session.transport.capabilities;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComLogoffAndX.java
/** * SMB1 Logoff AndX request message. * * This command is used to terminate a user session that was * previously established with a Session Setup AndX command. */ public class SmbComLogoffAndX extends AndXServerMessageBlock { /** * Creates a new SMB1 logoff request to end a user session. * * @param config the CIFS configuration * @param andx the next command in the AndX chain, or null
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupRequest.java
*/ package jcifs.internal.smb2.session; import jcifs.CIFSContext; import jcifs.internal.smb2.ServerMessageBlock2; import jcifs.internal.smb2.ServerMessageBlock2Request; import jcifs.internal.smb2.Smb2Constants; import jcifs.internal.util.SMBUtil; /** * SMB2 Session Setup request message. This command is used to establish a security session * and authenticate a user to the server. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
private static final String S2C_SIGN_CONSTANT = "session key to server-to-client signing key magic constant"; private static final String S2C_SEAL_CONSTANT = "session key to server-to-client sealing key magic constant"; private static final String C2S_SIGN_CONSTANT = "session key to client-to-server signing key magic constant"; private static final String C2S_SEAL_CONSTANT = "session key to client-to-server sealing key magic constant";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 17.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java
assertNull(pathMappingHelper.getPathMappingList(sessionId + "1")); pathMappingHelper.removePathMappingList(sessionId); assertNull(pathMappingHelper.getPathMappingList(sessionId)); assertNull(pathMappingHelper.getPathMappingList(sessionId + "1")); } public void test_replaceUrl() { final String sessionId = "test"; final List<PathMapping> pathMappingList = new ArrayList<PathMapping>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 14.9K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt
call: Call, connection: Connection, ) { if (random != null) { val sslSocket = connection.socket() as SSLSocket val session = sslSocket.session val masterSecretHex = session.masterSecret ?.encoded ?.toByteString() ?.hex() if (masterSecretHex != null) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat May 10 11:15:14 UTC 2025 - 10.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb3KeyDerivationTest.java
assertFalse(Arrays.equals(signingKey300, signingKey311)); } @Test @DisplayName("Should handle different session key sizes") void testDeriveKeys_DifferentSessionKeySizes() { // Test with various session key sizes int[] keySizes = { 8, 16, 24, 32, 64, 128 }; int dialect = Smb2Constants.SMB2_DIALECT_0311; for (int size : keySizes) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.5K bytes - Viewed (0)