- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for isSigningEnforced (0.16 seconds)
-
src/test/java/jcifs/internal/SmbNegotiationRequestTest.java
} @Test @DisplayName("Test isSigningEnforced returns false when signing is not enforced") void testIsSigningEnforcedReturnsFalse() { // Given when(negotiationRequest.isSigningEnforced()).thenReturn(false); // When boolean result = negotiationRequest.isSigningEnforced(); // ThenCreated: 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/main/java/jcifs/internal/smb1/com/SmbComNegotiate.java
this.dialects = new String[] { "NT LM 0.12" }; } } /** * {@inheritDoc} * * @see jcifs.internal.SmbNegotiationRequest#isSigningEnforced() */ @Override public boolean isSigningEnforced() { return this.signingEnforced; } @Override protected int writeParameterWordsWireFormat(final byte[] dst, final int dstIndex) { return 0; }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.5K bytes - Click Count (3) -
src/main/java/jcifs/internal/SmbNegotiationRequest.java
*/ public interface SmbNegotiationRequest { /** * Checks whether SMB message signing is enforced by the client. * * @return whether SMB signing is enforced */ boolean isSigningEnforced();Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.2K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbTransportInternal.java
* * @return whether signatures are enforced from either side * @throws SmbException if an error occurs checking signing status */ boolean isSigningEnforced() throws SmbException; /** * Gets the server's encryption key for authentication. * * @return the encryption key used by the server */ byte[] getServerEncryptionKey();Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.5K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaTransport.java
@Override public boolean isSigningOptional() throws SmbException { return delegate.isSigningOptional(); } @Override public boolean isSigningEnforced() throws SmbException { return delegate.isSigningEnforced(); } @Override public byte[] getServerEncryptionKey() { return delegate.getServerEncryptionKey(); } @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 05:11:12 GMT 2025 - 8.9K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java
* * @return the securityMode */ public int getSecurityMode() { return this.securityMode; } @Override public boolean isSigningEnforced() { return (getSecurityMode() & Smb2Constants.SMB2_NEGOTIATE_SIGNING_REQUIRED) != 0; } /** * Gets the client capabilities flags. * * @return the capabilities */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 9.3K bytes - Click Count (0) -
src/test/java/jcifs/ConfigurationTest.java
mockConfig.getPid(); mockConfig.getMaxMpxCount(); mockConfig.isSigningEnabled(); mockConfig.isIpcSigningEnforced(); mockConfig.isSigningEnforced(); mockConfig.isEncryptionEnabled(); mockConfig.isForceExtendedSecurity(); mockConfig.getLmHostsFileName(); mockConfig.getNetbiosScope();
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 3.9K bytes - Click Count (0)