Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for squashBytesToInts (0.18 sec)

  1. src/main/java/jcifs/smb1/util/DES.java

            squashBytesToInts( clearText, clearOff, tempInts, 0, 2 );
            des( tempInts, tempInts, encryptKeys );
            spreadIntsToBytes( tempInts, 0, cipherText, cipherOff, 2 );
        }
    
        /// Decrypt a block of eight bytes.
        private void decrypt( byte[] cipherText, int cipherOff, byte[] clearText, int clearOff ) {
    
            squashBytesToInts( cipherText, cipherOff, tempInts, 0, 2 );
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 21.4K bytes
    - Viewed (0)
Back to top