Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for b2 (1.26 sec)

  1. src/main/java/org/codelibs/core/misc/Base64Util.java

            final byte b1 = DECODE_TABLE[inData.charAt(inIndex + 1)];
            final byte b2 = DECODE_TABLE[inData.charAt(inIndex + 2)];
            final byte b3 = DECODE_TABLE[inData.charAt(inIndex + 3)];
            outData[outIndex] = (byte) (b0 << 2 & 0xfc | b1 >> 4 & 0x3);
            outData[outIndex + 1] = (byte) (b1 << 4 & 0xf0 | b2 >> 2 & 0xf);
            outData[outIndex + 2] = (byte) (b2 << 6 & 0xc0 | b3 & 0x3f);
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 6.3K bytes
    - Viewed (0)
Back to top