- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for SMBSignatureValidationException (2.37 seconds)
-
src/main/java/jcifs/smb/SMBSignatureValidationException.java
* Indicates that the integrity of an SMB message could not be verified. * * @author mbechler * */ public class SMBSignatureValidationException extends SmbException { /** * Default constructor for SMB signature validation exception. */ public SMBSignatureValidationException() { } /** * Constructs an SMB signature validation exception with message and cause. *Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.9K bytes - Click Count (0) -
src/test/java/jcifs/smb/SMBSignatureValidationExceptionTest.java
// Arrange String msg = "signature invalid"; SMBSignatureValidationException ex = new SMBSignatureValidationException(msg); // Act String s = ex.toString(); // Assert assertTrue(s.contains("SMBSignatureValidationException"), "toString should include class name");Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 5.3K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
(short) negoReq.getSecurityMode(), negoReq.getDialects())); Smb2IoctlResponse resp; try { resp = send(req, RequestParam.NO_RETRY); } catch (final SMBSignatureValidationException e) { throw new SMBProtocolDowngradeException("Signature error during negotiate validation", e); } catch (final SmbException e) { if (log.isDebugEnabled()) {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 30K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
} throw new SmbException(resp.getErrorCode(), null); } if (resp.isVerifyFailed()) { throw new SMBSignatureValidationException("Signature verification failed."); } return cont; } /** * @param resp * @param path * @param req * @throws SmbExceptionCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 69.8K bytes - Click Count (0)