Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for prie (0.11 sec)

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

            byte[] p24 = new byte[24];
            byte[] passwordBytes = Strings.getOEMBytes(password, tc.getConfig());
            int passwordLength = passwordBytes.length;
    
            // Only encrypt the first 14 bytes of the password for Pre 0.12 NT LM
            if ( passwordLength > 14 ) {
                passwordLength = 14;
            }
            System.arraycopy(passwordBytes, 0, p14, 0, passwordLength);
            NtlmUtil.E(p14, NtlmUtil.S8, p21);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 9.7K bytes
    - Viewed (0)
Back to top