Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getUnicodeHash (0.1 sec)

  1. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

                case 2:
                    this.macSigningKey = new byte[40];
                    auth.getUserSessionKey(transport.getContext(), serverEncryptionKey, this.macSigningKey, 0);
                    System.arraycopy(auth.getUnicodeHash(transport.getContext(), serverEncryptionKey), 0, this.macSigningKey, 16, 24);
                    break;
                case 3:
                case 4:
                case 5:
                    this.macSigningKey = new byte[16];
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 10.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

         * 
         * @param tc
         * @param chlng
         * @return the hash for the given challenge
         * @throws GeneralSecurityException
         */
        public byte[] getUnicodeHash ( CIFSContext tc, byte[] chlng ) throws GeneralSecurityException {
            switch ( tc.getConfig().getLanManCompatibility() ) {
            case 0:
            case 1:
            case 2:
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 18.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

            default:
                return getPreNTLMResponse( password, challenge );
            }
        }
    /**
     * Computes the 24 byte Unicode password hash given the 8 byte server challenge.
     */
        public byte[] getUnicodeHash( byte[] challenge ) {
            if( hashesExternal ) {
                return unicodeHash;
            }
            switch (LM_COMPATIBILITY) {
            case 0:
            case 1:
            case 2:
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
Back to top