- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getServerChallenge (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/smb1/smb1/NtlmContext.java
public boolean isEstablished() { return isEstablished; } /** * Gets the server's NTLM challenge bytes. * @return the server challenge bytes */ public byte[] getServerChallenge() { return serverChallenge; } /** * Gets the signing key for message authentication. * @return the signing key bytes */ public byte[] getSigningKey() {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 7K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/NtlmContextTest.java
// Test constructor when signing is enabled NtlmContext context = new NtlmContext(mockAuth, true); assertNotNull(context); assertFalse(context.isEstablished()); assertNull(context.getServerChallenge()); assertNull(context.getSigningKey()); assertNull(context.getNetbiosName());Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 8.9K bytes - Click Count (0)