- Sort Score
- Num 10 results
- Language All
Results 11 - 12 of 12 for encryptionKey (0.23 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXTest.java
private static class ServerDataStub extends ServerData { public ServerDataStub() { this.security = SmbConstants.SECURITY_USER; this.encryptedPasswords = false; this.encryptionKey = new byte[0]; } } @Test void anonymousGuestCredentials() throws Exception { setupNegotiateStubs(); NtlmPasswordAuthenticator auth = mock(NtlmPasswordAuthenticator.class);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 6.4K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbTransportImplTest.java
// SMB1 negotiation with server data SmbComNegotiateResponse smb1 = new SmbComNegotiateResponse(ctx); ServerData sd = smb1.getServerData(); sd.encryptionKey = new byte[] { 1, 2, 3 }; setField(transport, "negotiated", smb1); assertArrayEquals(new byte[] { 1, 2, 3 }, transport.getServerEncryptionKey()); // SMB2 negotiation never exposes key via this APICreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 17.6K bytes - Click Count (0)