Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SMBSignatureValidationException (0.09 sec)

  1. 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.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. 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");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  3. 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()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30K bytes
    - Viewed (0)
  4. 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 SmbException
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
Back to top