Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for nTOWFv1 (0.06 sec)

  1. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

                throw new RuntimeException("MD5", gse);
            }
    
            byte[] key = new byte[21];
            System.arraycopy(nTOWFv1, 0, key, 0, 16);
            byte[] ntResponse = new byte[24];
            E(key, sessionHash, ntResponse);
    
            return ntResponse;
        }
        public static byte[] nTOWFv1(String password)
        {
            if (password == null)
                throw new RuntimeException("Password parameter is required");
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtlmUtil.java

            md4.update(Strings.getUNIBytes(password));
            return md4.digest();
        }
    
    
        /**
         * 
         * @param password
         * @return the calculated hash
         */
        public static byte[] nTOWFv1 ( String password ) {
            return getNTHash(password);
        }
    
    
        /**
         * 
         * @param passwordHash
         * @param serverChallenge
         * @param clientChallenge
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 9.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

    // NTLMv1 w/ NTLM2 session sec and key exch all been verified with a debug build of smbclient
    
                    byte[] responseKeyNT = NtlmPasswordAuthentication.nTOWFv1(password);
                    byte[] ntlm2Response = NtlmPasswordAuthentication.getNTLM2Response(responseKeyNT,
                                type2.getChallenge(),
                                clientChallenge);
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.9K bytes
    - Viewed (0)
Back to top