Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Sanusi (0.23 sec)

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

            byte[] p24 = new byte[24];
            System.arraycopy(passwordHash, 0, p21, 0, 16);
            NtlmUtil.E(p21, challenge, p24);
            return p24;
        }
    
    
        /**
         * Generate the ANSI DES hash for the password associated with these credentials.
         * 
         * @param tc
         * @param password
         * @param challenge
         * @return the calculated response
         * @throws GeneralSecurityException
    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)
  2. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

            DEFAULT_USERNAME = Config.getProperty("jcifs.smb1.smb.client.username", "GUEST");
            DEFAULT_PASSWORD = Config.getProperty("jcifs.smb1.smb.client.password", BLANK);
        }
    
    /**
     * Generate the ANSI DES hash for the password associated with these credentials.
     */
        static public byte[] getPreNTLMResponse( String password, byte[] challenge ) {
            byte[] p14 = new byte[14];
            byte[] p21 = new byte[21];
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

         */
        public boolean isPreferredMech ( ASN1ObjectIdentifier mechanism ) {
            return NtlmContext.NTLMSSP_OID.equals(mechanism);
        }
    
    
        /**
         * Computes the 24 byte ANSI password hash given the 8 byte server challenge.
         * 
         * @param tc
         * @param chlng
         * @return the hash for the given challenge
         * @throws GeneralSecurityException
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 18.8K bytes
    - Viewed (0)
Back to top