Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DiGeSt (0.16 sec)

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

        }
    
    
        /**
         * @param digest
         *            the digest to set
         * @throws SmbException
         */
        private void setDigest ( SMBSigningDigest digest ) throws SmbException {
            if ( this.transport.isSMB2() ) {
                this.digest = digest;
            }
            else {
                this.transport.setDigest(digest);
            }
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

        }
    
    
        /**
         * @param digest
         */
        public void setDigest ( SMBSigningDigest digest ) {
            this.digest = digest;
        }
    
    
        /**
         * @return the digest
         */
        public SMBSigningDigest getDigest () {
            return this.digest;
        }
    
    
        /**
         * @return the context associated with this transport connection
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
Back to top