Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isVerifyFailed (0.1 sec)

  1. src/main/java/jcifs/smb/SmbTreeImpl.java

                }
                log.trace("VALIDATE_NEGOTIATE_INFO returned error", e);
                if ( ( req.getResponse().isReceived() && req.getResponse().isVerifyFailed() ) || e.getNtStatus() == NtStatus.NT_STATUS_ACCESS_DENIED ) {
                    // this is the signature error
                    throw new SMBProtocolDowngradeException("Signature error during negotiate validation", e);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

                }
                throw new SmbException(resp.getErrorCode(), null);
            }
            if ( resp.isVerifyFailed() ) {
                throw new SmbException("Signature verification failed.");
            }
            return cont;
        }
    
    
        /**
         * @param request
         * @param response
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
Back to top