Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for lcm (0.01 sec)

  1. src/main/java/jcifs/pac/PacMac.java

         * @return the n-folded data of the specified length
         */
        public static byte[] expandNFold(byte[] data, int outlen) {
            int lcm = lcm(outlen, data.length);
            byte[] buf = new byte[outlen];
            int carry = 0;
            for (int i = lcm - 1; i >= 0; i--) {
                carry = carry_add(data, buf, carry, i);
            }
    
            if (carry != 0) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 9K bytes
    - Viewed (0)
Back to top