Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getLMv2Response (0.19 sec)

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

         * @return the calculated response
         * @throws GeneralSecurityException
         */
        public static byte[] getLMv2Response ( String domain, String user, String password, byte[] challenge, byte[] clientChallenge )
                throws GeneralSecurityException {
            return getLMv2Response(domain, user, getNTHash(password), challenge, clientChallenge);
        }
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 9.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/Type3Message.java

         * @throws GeneralSecurityException
         */
        public static byte[] getLMv2Response ( CIFSContext tc, Type2Message type2, String domain, String user, String password, byte[] clientChallenge )
                throws GeneralSecurityException {
            if ( password == null ) {
                return null;
            }
            return getLMv2Response(tc, type2, domain, user, NtlmUtil.getNTHash(password), clientChallenge);
        }
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 30.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

        }
    
        public static byte[] getLMv2Response(Type2Message type2,
                String domain, String user, String password,
                        byte[] clientChallenge) {
            if (type2 == null || domain == null || user == null ||
                    password == null || clientChallenge == null) {
                return null;
            }
            return NtlmPasswordAuthentication.getLMv2Response(domain, user,
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

         * @param password The user's password.
         * @param challenge The server challenge.
         * @param clientChallenge The client challenge (nonce). 
         */ 
        public static byte[] getLMv2Response(String domain, String user,
                String password, byte[] challenge, byte[] clientChallenge) {
            try {
                byte[] hash = new byte[16];
                byte[] response = new byte[24];
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

                if ( this.clientChallenge == null ) {
                    this.clientChallenge = new byte[8];
                    tc.getConfig().getRandom().nextBytes(this.clientChallenge);
                }
                return NtlmUtil.getLMv2Response(this.domain, this.username, this.password, chlng, this.clientChallenge);
            default:
                return NtlmUtil.getPreNTLMResponse(tc, this.password, chlng);
            }
        }
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 18.8K bytes
    - Viewed (0)
Back to top