Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SmbComNegotiateResponse (0.25 sec)

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

            SmbComSessionSetupAndXResponse response = null;
            SSPContext ctx = null;
            byte[] token = new byte[0];
            int state = 10;
            final SmbComNegotiateResponse negoResp = (SmbComNegotiateResponse) trans.getNegotiateResponse();
            boolean anonymous = this.credentials.isAnonymous();
            do {
                switch ( state ) {
                case 10: /* NTLM */
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

        @Override
        public byte[] getServerEncryptionKey () {
            if ( this.negotiated == null ) {
                return null;
            }
    
            if ( this.negotiated instanceof SmbComNegotiateResponse ) {
                return ( (SmbComNegotiateResponse) this.negotiated ).getServerData().encryptionKey;
            }
            return null;
        }
    
    
        @Override
        public boolean isSigningOptional () throws SmbException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
Back to top