Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getSessionKey (0.33 sec)

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

        /**
         * 
         * {@inheritDoc}
         *
         * @see jcifs.smb.SmbPipeHandleInternal#getSessionKey()
         */
        @Override
        public byte[] getSessionKey () throws CIFSException {
            try ( SmbTreeHandleImpl th = ensureTreeConnected();
                  SmbSessionImpl sess = th.getSession() ) {
                return sess.getSessionKey();
            }
        }
    
    
        /**
         * {@inheritDoc}
         *
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Apr 13 17:05:22 GMT 2020
    - 10.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbSessionInternal.java

        /**
         * @return whether the session is in use
         */
        boolean isInUse ();
    
    
        /**
         * @return the current session key
         * @throws CIFSException
         */
        byte[] getSessionKey () throws CIFSException;
    
    
        /**
         * 
         * @return the transport for this session
         */
        SmbTransport getTransport ();
    
    
        /**
         * Connect to the logon share
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

            return masterKey;
        }
    
        /**
         * Returns the session key.
         *
         * @return A <code>byte[]</code> containing the session key.
         */
        public byte[] getSessionKey() {
            return sessionKey;
        }
    
        /**
         * Sets the session key.
         *
         * @param sessionKey The session key.
         */
        public void setSessionKey(byte[] sessionKey) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/DcerpcPipeHandle.java

        }
    
    
        @Override
        public String getServerWithDfs () {
            return this.pipe.getLocator().getServerWithDfs();
        }
    
    
        @Override
        public byte[] getSessionKey () throws CIFSException {
            return this.handle.getSessionKey();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.dcerpc.DcerpcHandle#doSendReceiveFragment(byte[], int, int, byte[])
         */
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jan 26 11:51:07 GMT 2020
    - 5.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbPipeHandleInternal.java

        /**
         * @return the pipe type
         */
        int getPipeType ();
    
    
        /**
         * @return session key of the underlying smb session
         * @throws CIFSException
         */
        byte[] getSessionKey () throws CIFSException;
    
    
        /**
         * 
         * @return this pipe's input stream
         * @throws SmbException
         */
        @Override
        SmbPipeInputStream getInput () throws CIFSException;
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/DcerpcHandle.java

        public abstract CIFSContext getTransportContext ();
    
    
        /**
         * 
         * @return session key of the underlying smb session
         * @throws CIFSException
         */
        public abstract byte[] getSessionKey () throws CIFSException;
    
    
        @Override
        public String toString () {
            return this.binding.toString();
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jun 30 10:11:57 GMT 2019
    - 12.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/Kerb5Context.java

                MIEName server = new MIEName(mech, ticket.getServer().getName());
                if ( src.equals(client) && targ.equals(server) ) {
                    return ticket.getSessionKey();
                }
            }
            return null;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.lang.Object#toString()
         */
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Aug 02 08:22:42 GMT 2018
    - 13.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbSessionImpl.java

            }
        }
    
    
        /**
         * @return the sessionKey
         * @throws CIFSException
         */
        @Override
        public byte[] getSessionKey () throws CIFSException {
            if ( this.sessionKey == null ) {
                throw new CIFSException("No session key available");
            }
            return this.sessionKey;
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
Back to top